openapi: 3.0.0
info:
  version: 0.9.0
  title: Glean API
  x-source-commit-sha: 4045699340887e4fc9b61bee0cf0ed888e74fcc1
  description: |
    # Introduction
    In addition to the data sources that Glean has built-in support for, Glean also provides a REST API that enables customers to put arbitrary content in the search index. This is useful, for example, for doing permissions-aware search over content in internal tools that reside on-prem as well as for searching over applications that Glean does not currently support first class. In addition these APIs allow the customer to push organization data (people info, organization structure etc) into Glean.

    # Usage guidelines
    This API is evolving fast. Glean will provide advance notice of any planned backwards incompatible changes along
    with a 6-month sunset period for anything that requires developers to adopt the new versions.

    # API Clients
    Official API clients for the Glean Indexing API are available in multiple languages:

    - [Python](https://github.com/gleanwork/api-client-python)
    - [TypeScript](https://github.com/gleanwork/api-client-typescript)
    - [Go](https://github.com/gleanwork/api-client-go)
    - [Java](https://github.com/gleanwork/api-client-java)

    These API clients provide type-safe, idiomatic interfaces for working with Glean IndexingAPIs in your language of choice.
  x-logo:
    url: https://app.glean.com/images/glean-text2.svg
  x-open-api-commit-sha: 24c3e1f002896f627e40e5e9031a65214bd921e3
  x-speakeasy-name: Glean API
servers:
  - url: https://{instance}-be.glean.com
    variables:
      instance:
        default: instance-name
        description: The instance name (typically the email domain without the TLD) that determines the deployment backend.
security:
  - APIToken: []
paths:
  /rest/api/v1/activity:
    post:
      tags:
        - Activity
      summary: Report document activity
      description: Report user activity that occurs on indexed documents such as viewing or editing. This signal improves search quality.
      operationId: activity
      x-visibility: Public
      x-codegen-request-body-name: payload
      requestBody:
        content:
          application/json:
            schema:
              $ref: "#/components/schemas/Activity"
        required: true
        x-exportParamName: Activity
      responses:
        "200":
          description: OK
        "400":
          description: Invalid request
        "401":
          description: Not Authorized
        "429":
          description: Too Many Requests
      x-speakeasy-name-override: report
      x-speakeasy-group: client.activity
      x-codeSamples:
        - lang: python
          label: Python (API Client)
          source: |-
            from glean.api_client import Glean, models
            from glean.api_client.utils import parse_datetime
            import os


            with Glean(
                api_token=os.getenv("GLEAN_API_TOKEN", ""),
                instance=os.getenv("GLEAN_INSTANCE", ""),
            ) as glean:

                glean.client.activity.report(events=[
                    {
                        "action": models.ActivityEventAction.HISTORICAL_VIEW,
                        "timestamp": parse_datetime("2000-01-23T04:56:07.000Z"),
                        "url": "https://example.com/",
                    },
                    {
                        "action": models.ActivityEventAction.SEARCH,
                        "params": {
                            "query": "query",
                        },
                        "timestamp": parse_datetime("2000-01-23T04:56:07.000Z"),
                        "url": "https://example.com/search?q=query",
                    },
                    {
                        "action": models.ActivityEventAction.VIEW,
                        "params": {
                            "duration": 20,
                            "referrer": "https://example.com/document",
                        },
                        "timestamp": parse_datetime("2000-01-23T04:56:07.000Z"),
                        "url": "https://example.com/",
                    },
                ])

                # Use the SDK ...
        - lang: typescript
          label: Typescript (API Client)
          source: |-
            import { Glean } from "@gleanwork/api-client";

            const glean = new Glean({
              apiToken: process.env["GLEAN_API_TOKEN"] ?? "",
              instance: process.env["GLEAN_INSTANCE"] ?? "",
            });

            async function run() {
              await glean.client.activity.report({
                events: [
                  {
                    action: "HISTORICAL_VIEW",
                    timestamp: new Date("2000-01-23T04:56:07.000Z"),
                    url: "https://example.com/",
                  },
                  {
                    action: "SEARCH",
                    params: {
                      query: "query",
                    },
                    timestamp: new Date("2000-01-23T04:56:07.000Z"),
                    url: "https://example.com/search?q=query",
                  },
                  {
                    action: "VIEW",
                    params: {
                      duration: 20,
                      referrer: "https://example.com/document",
                    },
                    timestamp: new Date("2000-01-23T04:56:07.000Z"),
                    url: "https://example.com/",
                  },
                ],
              });


            }

            run();
        - lang: go
          label: Go (API Client)
          source: "package main\n\nimport(\n\t\"context\"\n\t\"os\"\n\tapiclientgo \"github.com/gleanwork/api-client-go\"\n\t\"github.com/gleanwork/api-client-go/models/components\"\n\t\"github.com/gleanwork/api-client-go/types\"\n\t\"log\"\n)\n\nfunc main() {\n    ctx := context.Background()\n\n    s := apiclientgo.New(\n        apiclientgo.WithSecurity(os.Getenv(\"GLEAN_API_TOKEN\")),\n        apiclientgo.WithInstance(os.Getenv(\"GLEAN_INSTANCE\")),\n    )\n\n    res, err := s.Client.Activity.Report(ctx, components.Activity{\n        Events: []components.ActivityEvent{\n            components.ActivityEvent{\n                Action: components.ActivityEventActionHistoricalView,\n                Timestamp: types.MustTimeFromString(\"2000-01-23T04:56:07.000Z\"),\n                URL: \"https://example.com/\",\n            },\n            components.ActivityEvent{\n                Action: components.ActivityEventActionSearch,\n                Params: &components.ActivityEventParams{\n                    Query: apiclientgo.Pointer(\"query\"),\n                },\n                Timestamp: types.MustTimeFromString(\"2000-01-23T04:56:07.000Z\"),\n                URL: \"https://example.com/search?q=query\",\n            },\n            components.ActivityEvent{\n                Action: components.ActivityEventActionView,\n                Params: &components.ActivityEventParams{\n                    Duration: apiclientgo.Pointer[int64](20),\n                    Referrer: apiclientgo.Pointer(\"https://example.com/document\"),\n                },\n                Timestamp: types.MustTimeFromString(\"2000-01-23T04:56:07.000Z\"),\n                URL: \"https://example.com/\",\n            },\n        },\n    })\n    if err != nil {\n        log.Fatal(err)\n    }\n    if res != nil {\n        // handle response\n    }\n}"
        - lang: java
          label: Java (API Client)
          source: |-
            package hello.world;

            import com.glean.api_client.glean_api_client.Glean;
            import com.glean.api_client.glean_api_client.models.components.*;
            import com.glean.api_client.glean_api_client.models.operations.ActivityResponse;
            import java.lang.Exception;
            import java.time.OffsetDateTime;
            import java.util.List;

            public class Application {

                public static void main(String[] args) throws Exception {

                    Glean sdk = Glean.builder()
                            .apiToken(System.getenv().getOrDefault("GLEAN_API_TOKEN", ""))
                        .build();

                    Activity req = Activity.builder()
                            .events(List.of(
                                ActivityEvent.builder()
                                    .action(ActivityEventAction.HISTORICAL_VIEW)
                                    .timestamp(OffsetDateTime.parse("2000-01-23T04:56:07.000Z"))
                                    .url("https://example.com/")
                                    .build(),
                                ActivityEvent.builder()
                                    .action(ActivityEventAction.SEARCH)
                                    .timestamp(OffsetDateTime.parse("2000-01-23T04:56:07.000Z"))
                                    .url("https://example.com/search?q=query")
                                    .params(ActivityEventParams.builder()
                                        .query("query")
                                        .build())
                                    .build(),
                                ActivityEvent.builder()
                                    .action(ActivityEventAction.VIEW)
                                    .timestamp(OffsetDateTime.parse("2000-01-23T04:56:07.000Z"))
                                    .url("https://example.com/")
                                    .params(ActivityEventParams.builder()
                                        .duration(20L)
                                        .referrer("https://example.com/document")
                                        .build())
                                    .build()))
                            .build();

                    ActivityResponse res = sdk.client().activity().report()
                            .request(req)
                            .call();

                    // handle response
                }
            }
  /rest/api/v1/feedback:
    post:
      tags:
        - Activity
      summary: Report client activity
      description: Report events that happen to results within a Glean client UI, such as search result views and clicks.  This signal improves search quality.
      operationId: feedback
      x-visibility: Public
      x-codegen-request-body-name: payload
      parameters:
        - name: feedback
          in: query
          description: A URL encoded versions of Feedback. This is useful for requests.
          required: false
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: "#/components/schemas/Feedback"
        x-exportParamName: Feedback
      responses:
        "200":
          description: OK
        "400":
          description: Invalid request
        "401":
          description: Not Authorized
        "429":
          description: Too Many Requests
      x-speakeasy-group: client.activity
      x-codeSamples:
        - lang: python
          label: Python (API Client)
          source: |-
            from glean.api_client import Glean, models
            import os


            with Glean(
                api_token=os.getenv("GLEAN_API_TOKEN", ""),
                instance=os.getenv("GLEAN_INSTANCE", ""),
            ) as glean:

                glean.client.activity.feedback(feedback1={
                    "tracking_tokens": [
                        "trackingTokens",
                    ],
                    "event": models.Event.VIEW,
                })

                # Use the SDK ...
        - lang: typescript
          label: Typescript (API Client)
          source: |-
            import { Glean } from "@gleanwork/api-client";

            const glean = new Glean({
              apiToken: process.env["GLEAN_API_TOKEN"] ?? "",
              instance: process.env["GLEAN_INSTANCE"] ?? "",
            });

            async function run() {
              await glean.client.activity.feedback({
                trackingTokens: [
                  "trackingTokens",
                ],
                event: "VIEW",
              });


            }

            run();
        - lang: go
          label: Go (API Client)
          source: "package main\n\nimport(\n\t\"context\"\n\t\"os\"\n\tapiclientgo \"github.com/gleanwork/api-client-go\"\n\t\"github.com/gleanwork/api-client-go/models/components\"\n\t\"log\"\n)\n\nfunc main() {\n    ctx := context.Background()\n\n    s := apiclientgo.New(\n        apiclientgo.WithSecurity(os.Getenv(\"GLEAN_API_TOKEN\")),\n        apiclientgo.WithInstance(os.Getenv(\"GLEAN_INSTANCE\")),\n    )\n\n    res, err := s.Client.Activity.Feedback(ctx, nil, &components.Feedback{\n        TrackingTokens: []string{\n            \"trackingTokens\",\n        },\n        Event: components.EventView,\n    })\n    if err != nil {\n        log.Fatal(err)\n    }\n    if res != nil {\n        // handle response\n    }\n}"
        - lang: java
          label: Java (API Client)
          source: |-
            package hello.world;

            import com.glean.api_client.glean_api_client.Glean;
            import com.glean.api_client.glean_api_client.models.components.Event;
            import com.glean.api_client.glean_api_client.models.components.Feedback;
            import com.glean.api_client.glean_api_client.models.operations.FeedbackResponse;
            import java.lang.Exception;
            import java.util.List;

            public class Application {

                public static void main(String[] args) throws Exception {

                    Glean sdk = Glean.builder()
                            .apiToken(System.getenv().getOrDefault("GLEAN_API_TOKEN", ""))
                        .build();

                    FeedbackResponse res = sdk.client().activity().feedback()
                            .feedback1(Feedback.builder()
                                .trackingTokens(List.of(
                                    "trackingTokens"))
                                .event(Event.VIEW)
                                .build())
                            .call();

                    // handle response
                }
            }
  /rest/api/v1/createannouncement:
    post:
      tags:
        - Announcements
      summary: Create Announcement
      description: Create a textual announcement visible to some set of users based on department and location.
      operationId: createannouncement
      x-visibility: Public
      x-codegen-request-body-name: payload
      parameters:
        - $ref: "#/components/parameters/locale"
      requestBody:
        content:
          application/json:
            schema:
              $ref: "#/components/schemas/CreateAnnouncementRequest"
        description: Announcement content
        required: true
        x-exportParamName: Request
      responses:
        "200":
          description: OK
          content:
            application/json:
              schema:
                $ref: "#/components/schemas/Announcement"
        "400":
          description: Invalid request
        "401":
          description: Not Authorized
        "429":
          description: Too Many Requests
      x-speakeasy-name-override: create
      x-speakeasy-group: client.announcements
      x-codeSamples:
        - lang: python
          label: Python (API Client)
          source: |-
            from glean.api_client import Glean, models
            from glean.api_client.utils import parse_datetime
            import os


            with Glean(
                api_token=os.getenv("GLEAN_API_TOKEN", ""),
                instance=os.getenv("GLEAN_INSTANCE", ""),
            ) as glean:

                res = glean.client.announcements.create(start_time=parse_datetime("2023-05-01T12:02:10.816Z"), end_time=parse_datetime("2024-03-17T14:19:30.278Z"), title="<value>", body={
                    "text": "From https://en.wikipedia.org/wiki/Diffuse_sky_radiation, the sky is blue because blue light is more strongly scattered than longer-wavelength light.",
                    "structured_list": [
                        models.StructuredTextItem(
                            link="https://en.wikipedia.org/wiki/Diffuse_sky_radiation",
                            document=models.Document(
                                container_document=models.Document(
                                    metadata=models.DocumentMetadata(
                                        datasource="datasource",
                                        object_type="Feature Request",
                                        container="container",
                                        parent_id="JIRA_EN-1337",
                                        mime_type="mimeType",
                                        document_id="documentId",
                                        create_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                        update_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                        author=models.Person(
                                            name="name",
                                            obfuscated_id="<id>",
                                        ),
                                        components=[
                                            "Backend",
                                            "Networking",
                                        ],
                                        status="[\"Done\"]",
                                        custom_data={
                                            "someCustomField": models.CustomDataValue(),
                                        },
                                    ),
                                ),
                                parent_document=models.Document(
                                    metadata=models.DocumentMetadata(
                                        datasource="datasource",
                                        object_type="Feature Request",
                                        container="container",
                                        parent_id="JIRA_EN-1337",
                                        mime_type="mimeType",
                                        document_id="documentId",
                                        create_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                        update_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                        author=models.Person(
                                            name="name",
                                            obfuscated_id="<id>",
                                        ),
                                        components=[
                                            "Backend",
                                            "Networking",
                                        ],
                                        status="[\"Done\"]",
                                        custom_data={
                                            "someCustomField": models.CustomDataValue(),
                                        },
                                    ),
                                ),
                                metadata=models.DocumentMetadata(
                                    datasource="datasource",
                                    object_type="Feature Request",
                                    container="container",
                                    parent_id="JIRA_EN-1337",
                                    mime_type="mimeType",
                                    document_id="documentId",
                                    create_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                    update_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                    author=models.Person(
                                        name="name",
                                        obfuscated_id="<id>",
                                    ),
                                    components=[
                                        "Backend",
                                        "Networking",
                                    ],
                                    status="[\"Done\"]",
                                    custom_data={
                                        "someCustomField": models.CustomDataValue(),
                                    },
                                ),
                            ),
                            text="Because its wavelengths are shorter, blue light is more strongly scattered than the longer-wavelength lights, red or green. Hence the result that when looking at the sky away from the direct incident sunlight, the human eye perceives the sky to be blue.",
                            structured_result=models.StructuredResult(
                                document=models.Document(
                                    container_document=models.Document(
                                        metadata=models.DocumentMetadata(
                                            datasource="datasource",
                                            object_type="Feature Request",
                                            container="container",
                                            parent_id="JIRA_EN-1337",
                                            mime_type="mimeType",
                                            document_id="documentId",
                                            create_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                            update_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                            author=models.Person(
                                                name="name",
                                                obfuscated_id="<id>",
                                            ),
                                            components=[
                                                "Backend",
                                                "Networking",
                                            ],
                                            status="[\"Done\"]",
                                            custom_data={
                                                "someCustomField": models.CustomDataValue(),
                                            },
                                        ),
                                    ),
                                    parent_document=models.Document(
                                        metadata=models.DocumentMetadata(
                                            datasource="datasource",
                                            object_type="Feature Request",
                                            container="container",
                                            parent_id="JIRA_EN-1337",
                                            mime_type="mimeType",
                                            document_id="documentId",
                                            create_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                            update_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                            author=models.Person(
                                                name="name",
                                                obfuscated_id="<id>",
                                            ),
                                            components=[
                                                "Backend",
                                                "Networking",
                                            ],
                                            status="[\"Done\"]",
                                            custom_data={
                                                "someCustomField": models.CustomDataValue(),
                                            },
                                        ),
                                    ),
                                    metadata=models.DocumentMetadata(
                                        datasource="datasource",
                                        object_type="Feature Request",
                                        container="container",
                                        parent_id="JIRA_EN-1337",
                                        mime_type="mimeType",
                                        document_id="documentId",
                                        create_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                        update_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                        author=models.Person(
                                            name="name",
                                            obfuscated_id="<id>",
                                        ),
                                        components=[
                                            "Backend",
                                            "Networking",
                                        ],
                                        status="[\"Done\"]",
                                        custom_data={
                                            "someCustomField": models.CustomDataValue(),
                                        },
                                    ),
                                ),
                                person=models.Person(
                                    name="George Clooney",
                                    obfuscated_id="abc123",
                                ),
                                customer=models.Customer(
                                    id="<id>",
                                    company=models.Company(
                                        name="<value>",
                                        location="New York City",
                                        industry="Finances",
                                        about="Financial, software, data, and media company headquartered in Midtown Manhattan, New York City",
                                    ),
                                    poc=[
                                        models.Person(
                                            name="George Clooney",
                                            obfuscated_id="abc123",
                                        ),
                                    ],
                                    merged_customers=[
                                        models.Customer(
                                            id="<id>",
                                            company=models.Company(
                                                name="<value>",
                                                location="New York City",
                                                industry="Finances",
                                                about="Financial, software, data, and media company headquartered in Midtown Manhattan, New York City",
                                            ),
                                            notes="CIO is interested in trying out the product.",
                                        ),
                                    ],
                                    notes="CIO is interested in trying out the product.",
                                ),
                                team=models.Team(
                                    id="<id>",
                                    name="<value>",
                                    members=[
                                        models.PersonToTeamRelationship(
                                            person=models.Person(
                                                name="George Clooney",
                                                obfuscated_id="abc123",
                                            ),
                                        ),
                                    ],
                                    custom_fields=[
                                        models.CustomFieldData(
                                            label="<value>",
                                            values=[
                                                models.CustomFieldValuePerson(
                                                    person=models.Person(
                                                        name="George Clooney",
                                                        obfuscated_id="abc123",
                                                    ),
                                                ),
                                            ],
                                        ),
                                    ],
                                    datasource_profiles=[
                                        models.DatasourceProfile(
                                            datasource="github",
                                            handle="<value>",
                                        ),
                                    ],
                                ),
                                custom_entity=models.CustomEntity(
                                    roles=[
                                        models.UserRoleSpecification(
                                            person=models.Person(
                                                name="George Clooney",
                                                obfuscated_id="abc123",
                                            ),
                                            role=models.UserRole.ANSWER_MODERATOR,
                                        ),
                                    ],
                                ),
                                answer=models.Answer(
                                    id=3,
                                    doc_id="ANSWERS_answer_3",
                                    question="Why is the sky blue?",
                                    body_text="From https://en.wikipedia.org/wiki/Diffuse_sky_radiation, the sky is blue because blue light is more strongly scattered than longer-wavelength light.",
                                    audience_filters=[
                                        models.FacetFilter(
                                            field_name="type",
                                            values=[
                                                models.FacetFilterValue(
                                                    value="Spreadsheet",
                                                    relation_type=models.RelationType.EQUALS,
                                                ),
                                                models.FacetFilterValue(
                                                    value="Presentation",
                                                    relation_type=models.RelationType.EQUALS,
                                                ),
                                            ],
                                        ),
                                    ],
                                    added_roles=[
                                        models.UserRoleSpecification(
                                            person=models.Person(
                                                name="George Clooney",
                                                obfuscated_id="abc123",
                                            ),
                                            role=models.UserRole.VERIFIER,
                                        ),
                                    ],
                                    removed_roles=[
                                        models.UserRoleSpecification(
                                            person=models.Person(
                                                name="George Clooney",
                                                obfuscated_id="abc123",
                                            ),
                                            role=models.UserRole.VERIFIER,
                                        ),
                                    ],
                                    combined_answer_text=models.StructuredText(
                                        text="From https://en.wikipedia.org/wiki/Diffuse_sky_radiation, the sky is blue because blue light is more strongly scattered than longer-wavelength light.",
                                    ),
                                    likes=models.AnswerLikes(
                                        liked_by=[
                                            models.AnswerLike(
                                                user=models.Person(
                                                    name="George Clooney",
                                                    obfuscated_id="abc123",
                                                ),
                                            ),
                                        ],
                                        liked_by_user=False,
                                        num_likes=852982,
                                    ),
                                    author=models.Person(
                                        name="George Clooney",
                                        obfuscated_id="abc123",
                                    ),
                                    updated_by=models.Person(
                                        name="George Clooney",
                                        obfuscated_id="abc123",
                                    ),
                                    verification=models.Verification(
                                        state=models.State.DEPRECATED,
                                        metadata=models.VerificationMetadata(
                                            last_verifier=models.Person(
                                                name="George Clooney",
                                                obfuscated_id="abc123",
                                            ),
                                            document=models.Document(
                                                container_document=models.Document(
                                                    metadata=models.DocumentMetadata(
                                                        datasource="datasource",
                                                        object_type="Feature Request",
                                                        container="container",
                                                        parent_id="JIRA_EN-1337",
                                                        mime_type="mimeType",
                                                        document_id="documentId",
                                                        create_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                                        update_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                                        author=models.Person(
                                                            name="name",
                                                            obfuscated_id="<id>",
                                                        ),
                                                        components=[
                                                            "Backend",
                                                            "Networking",
                                                        ],
                                                        status="[\"Done\"]",
                                                        custom_data={
                                                            "someCustomField": models.CustomDataValue(),
                                                        },
                                                    ),
                                                ),
                                                parent_document=models.Document(
                                                    metadata=models.DocumentMetadata(
                                                        datasource="datasource",
                                                        object_type="Feature Request",
                                                        container="container",
                                                        parent_id="JIRA_EN-1337",
                                                        mime_type="mimeType",
                                                        document_id="documentId",
                                                        create_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                                        update_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                                        author=models.Person(
                                                            name="name",
                                                            obfuscated_id="<id>",
                                                        ),
                                                        components=[
                                                            "Backend",
                                                            "Networking",
                                                        ],
                                                        status="[\"Done\"]",
                                                        custom_data={
                                                            "someCustomField": models.CustomDataValue(),
                                                        },
                                                    ),
                                                ),
                                                metadata=models.DocumentMetadata(
                                                    datasource="datasource",
                                                    object_type="Feature Request",
                                                    container="container",
                                                    parent_id="JIRA_EN-1337",
                                                    mime_type="mimeType",
                                                    document_id="documentId",
                                                    create_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                                    update_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                                    author=models.Person(
                                                        name="name",
                                                        obfuscated_id="<id>",
                                                    ),
                                                    components=[
                                                        "Backend",
                                                        "Networking",
                                                    ],
                                                    status="[\"Done\"]",
                                                    custom_data={
                                                        "someCustomField": models.CustomDataValue(),
                                                    },
                                                ),
                                            ),
                                            reminders=[
                                                models.Reminder(
                                                    assignee=models.Person(
                                                        name="George Clooney",
                                                        obfuscated_id="abc123",
                                                    ),
                                                    requestor=models.Person(
                                                        name="George Clooney",
                                                        obfuscated_id="abc123",
                                                    ),
                                                    remind_at=627080,
                                                ),
                                            ],
                                            last_reminder=models.Reminder(
                                                assignee=models.Person(
                                                    name="George Clooney",
                                                    obfuscated_id="abc123",
                                                ),
                                                requestor=models.Person(
                                                    name="George Clooney",
                                                    obfuscated_id="abc123",
                                                ),
                                                remind_at=642543,
                                            ),
                                            candidate_verifiers=[
                                                models.Person(
                                                    name="George Clooney",
                                                    obfuscated_id="abc123",
                                                ),
                                            ],
                                        ),
                                    ),
                                    collections=[
                                        models.Collection(
                                            name="<value>",
                                            description="minus mindless prudent better elderly",
                                            audience_filters=[
                                                models.FacetFilter(
                                                    field_name="type",
                                                    values=[
                                                        models.FacetFilterValue(
                                                            value="Spreadsheet",
                                                            relation_type=models.RelationType.EQUALS,
                                                        ),
                                                        models.FacetFilterValue(
                                                            value="Presentation",
                                                            relation_type=models.RelationType.EQUALS,
                                                        ),
                                                    ],
                                                ),
                                            ],
                                            id=953622,
                                            creator=models.Person(
                                                name="George Clooney",
                                                obfuscated_id="abc123",
                                            ),
                                            updated_by=models.Person(
                                                name="George Clooney",
                                                obfuscated_id="abc123",
                                            ),
                                            items=[
                                                models.CollectionItem(
                                                    collection_id=164413,
                                                    created_by=models.Person(
                                                        name="George Clooney",
                                                        obfuscated_id="abc123",
                                                    ),
                                                    document=models.Document(
                                                        container_document=models.Document(
                                                            metadata=models.DocumentMetadata(
                                                                datasource="datasource",
                                                                object_type="Feature Request",
                                                                container="container",
                                                                parent_id="JIRA_EN-1337",
                                                                mime_type="mimeType",
                                                                document_id="documentId",
                                                                create_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                                                update_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                                                author=models.Person(
                                                                    name="name",
                                                                    obfuscated_id="<id>",
                                                                ),
                                                                components=[
                                                                    "Backend",
                                                                    "Networking",
                                                                ],
                                                                status="[\"Done\"]",
                                                                custom_data={
                                                                    "someCustomField": models.CustomDataValue(),
                                                                },
                                                            ),
                                                        ),
                                                        parent_document=models.Document(
                                                            metadata=models.DocumentMetadata(
                                                                datasource="datasource",
                                                                object_type="Feature Request",
                                                                container="container",
                                                                parent_id="JIRA_EN-1337",
                                                                mime_type="mimeType",
                                                                document_id="documentId",
                                                                create_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                                                update_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                                                author=models.Person(
                                                                    name="name",
                                                                    obfuscated_id="<id>",
                                                                ),
                                                                components=[
                                                                    "Backend",
                                                                    "Networking",
                                                                ],
                                                                status="[\"Done\"]",
                                                                custom_data={
                                                                    "someCustomField": models.CustomDataValue(),
                                                                },
                                                            ),
                                                        ),
                                                        metadata=models.DocumentMetadata(
                                                            datasource="datasource",
                                                            object_type="Feature Request",
                                                            container="container",
                                                            parent_id="JIRA_EN-1337",
                                                            mime_type="mimeType",
                                                            document_id="documentId",
                                                            create_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                                            update_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                                            author=models.Person(
                                                                name="name",
                                                                obfuscated_id="<id>",
                                                            ),
                                                            components=[
                                                                "Backend",
                                                                "Networking",
                                                            ],
                                                            status="[\"Done\"]",
                                                            custom_data={
                                                                "someCustomField": models.CustomDataValue(),
                                                            },
                                                        ),
                                                    ),
                                                    shortcut=models.Shortcut(
                                                        input_alias="<value>",
                                                        created_by=models.Person(
                                                            name="George Clooney",
                                                            obfuscated_id="abc123",
                                                        ),
                                                        updated_by=models.Person(
                                                            name="George Clooney",
                                                            obfuscated_id="abc123",
                                                        ),
                                                        destination_document=models.Document(
                                                            container_document=models.Document(
                                                                metadata=models.DocumentMetadata(
                                                                    datasource="datasource",
                                                                    object_type="Feature Request",
                                                                    container="container",
                                                                    parent_id="JIRA_EN-1337",
                                                                    mime_type="mimeType",
                                                                    document_id="documentId",
                                                                    create_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                                                    update_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                                                    author=models.Person(
                                                                        name="name",
                                                                        obfuscated_id="<id>",
                                                                    ),
                                                                    components=[
                                                                        "Backend",
                                                                        "Networking",
                                                                    ],
                                                                    status="[\"Done\"]",
                                                                    custom_data={
                                                                        "someCustomField": models.CustomDataValue(),
                                                                    },
                                                                ),
                                                            ),
                                                            parent_document=models.Document(
                                                                metadata=models.DocumentMetadata(
                                                                    datasource="datasource",
                                                                    object_type="Feature Request",
                                                                    container="container",
                                                                    parent_id="JIRA_EN-1337",
                                                                    mime_type="mimeType",
                                                                    document_id="documentId",
                                                                    create_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                                                    update_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                                                    author=models.Person(
                                                                        name="name",
                                                                        obfuscated_id="<id>",
                                                                    ),
                                                                    components=[
                                                                        "Backend",
                                                                        "Networking",
                                                                    ],
                                                                    status="[\"Done\"]",
                                                                    custom_data={
                                                                        "someCustomField": models.CustomDataValue(),
                                                                    },
                                                                ),
                                                            ),
                                                            metadata=models.DocumentMetadata(
                                                                datasource="datasource",
                                                                object_type="Feature Request",
                                                                container="container",
                                                                parent_id="JIRA_EN-1337",
                                                                mime_type="mimeType",
                                                                document_id="documentId",
                                                                create_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                                                update_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                                                author=models.Person(
                                                                    name="name",
                                                                    obfuscated_id="<id>",
                                                                ),
                                                                components=[
                                                                    "Backend",
                                                                    "Networking",
                                                                ],
                                                                status="[\"Done\"]",
                                                                custom_data={
                                                                    "someCustomField": models.CustomDataValue(),
                                                                },
                                                            ),
                                                        ),
                                                    ),
                                                    collection=models.Collection(
                                                        name="<value>",
                                                        description="instead calmly after ick headline inasmuch forenenst westernize grouper amidst",
                                                        audience_filters=[
                                                            models.FacetFilter(
                                                                field_name="type",
                                                                values=[
                                                                    models.FacetFilterValue(
                                                                        value="Spreadsheet",
                                                                        relation_type=models.RelationType.EQUALS,
                                                                    ),
                                                                    models.FacetFilterValue(
                                                                        value="Presentation",
                                                                        relation_type=models.RelationType.EQUALS,
                                                                    ),
                                                                ],
                                                            ),
                                                        ],
                                                        id=345597,
                                                        creator=models.Person(
                                                            name="George Clooney",
                                                            obfuscated_id="abc123",
                                                        ),
                                                        updated_by=models.Person(
                                                            name="George Clooney",
                                                            obfuscated_id="abc123",
                                                        ),
                                                        children=[
                                                            models.Collection(
                                                                name="<value>",
                                                                description="boulevard pale collaborate pertinent comparison drat yum rejigger nor finding",
                                                                audience_filters=[
                                                                    models.FacetFilter(
                                                                        field_name="type",
                                                                        values=[
                                                                            models.FacetFilterValue(
                                                                                value="Spreadsheet",
                                                                                relation_type=models.RelationType.EQUALS,
                                                                            ),
                                                                            models.FacetFilterValue(
                                                                                value="Presentation",
                                                                                relation_type=models.RelationType.EQUALS,
                                                                            ),
                                                                        ],
                                                                    ),
                                                                ],
                                                                id=654575,
                                                                creator=models.Person(
                                                                    name="George Clooney",
                                                                    obfuscated_id="abc123",
                                                                ),
                                                                updated_by=models.Person(
                                                                    name="George Clooney",
                                                                    obfuscated_id="abc123",
                                                                ),
                                                            ),
                                                        ],
                                                    ),
                                                    item_type=models.CollectionItemItemType.DOCUMENT,
                                                ),
                                            ],
                                        ),
                                    ],
                                    source_document=models.Document(
                                        container_document=models.Document(
                                            metadata=models.DocumentMetadata(
                                                datasource="datasource",
                                                object_type="Feature Request",
                                                container="container",
                                                parent_id="JIRA_EN-1337",
                                                mime_type="mimeType",
                                                document_id="documentId",
                                                create_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                                update_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                                author=models.Person(
                                                    name="name",
                                                    obfuscated_id="<id>",
                                                ),
                                                components=[
                                                    "Backend",
                                                    "Networking",
                                                ],
                                                status="[\"Done\"]",
                                                custom_data={
                                                    "someCustomField": models.CustomDataValue(),
                                                },
                                            ),
                                        ),
                                        parent_document=models.Document(
                                            metadata=models.DocumentMetadata(
                                                datasource="datasource",
                                                object_type="Feature Request",
                                                container="container",
                                                parent_id="JIRA_EN-1337",
                                                mime_type="mimeType",
                                                document_id="documentId",
                                                create_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                                update_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                                author=models.Person(
                                                    name="name",
                                                    obfuscated_id="<id>",
                                                ),
                                                components=[
                                                    "Backend",
                                                    "Networking",
                                                ],
                                                status="[\"Done\"]",
                                                custom_data={
                                                    "someCustomField": models.CustomDataValue(),
                                                },
                                            ),
                                        ),
                                        metadata=models.DocumentMetadata(
                                            datasource="datasource",
                                            object_type="Feature Request",
                                            container="container",
                                            parent_id="JIRA_EN-1337",
                                            mime_type="mimeType",
                                            document_id="documentId",
                                            create_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                            update_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                            author=models.Person(
                                                name="name",
                                                obfuscated_id="<id>",
                                            ),
                                            components=[
                                                "Backend",
                                                "Networking",
                                            ],
                                            status="[\"Done\"]",
                                            custom_data={
                                                "someCustomField": models.CustomDataValue(),
                                            },
                                        ),
                                    ),
                                ),
                                extracted_qn_a=models.ExtractedQnA(
                                    question_result=models.SearchResult(
                                        title="title",
                                        url="https://example.com/foo/bar",
                                        native_app_url="slack://foo/bar",
                                        snippets=[
                                            models.SearchResultSnippet(
                                                mime_type="mimeType",
                                                snippet="snippet",
                                            ),
                                        ],
                                        must_include_suggestions=models.QuerySuggestionList(
                                            suggestions=[
                                                models.QuerySuggestion(
                                                    query="app:github type:pull author:mortimer",
                                                    label="Mortimer's PRs",
                                                    datasource="github",
                                                ),
                                            ],
                                            person=models.Person(
                                                name="George Clooney",
                                                obfuscated_id="abc123",
                                            ),
                                        ),
                                    ),
                                ),
                                meeting=models.Meeting(
                                    attendees=models.CalendarAttendees(
                                        people=[
                                            models.CalendarAttendee(
                                                person=models.Person(
                                                    name="George Clooney",
                                                    obfuscated_id="abc123",
                                                ),
                                                group_attendees=[
                                                    models.CalendarAttendee(
                                                        person=models.Person(
                                                            name="George Clooney",
                                                            obfuscated_id="abc123",
                                                        ),
                                                    ),
                                                ],
                                            ),
                                        ],
                                    ),
                                ),
                                collection=models.Collection(
                                    name="<value>",
                                    description="instead calmly after ick headline inasmuch forenenst westernize grouper amidst",
                                    audience_filters=[
                                        models.FacetFilter(
                                            field_name="type",
                                            values=[
                                                models.FacetFilterValue(
                                                    value="Spreadsheet",
                                                    relation_type=models.RelationType.EQUALS,
                                                ),
                                                models.FacetFilterValue(
                                                    value="Presentation",
                                                    relation_type=models.RelationType.EQUALS,
                                                ),
                                            ],
                                        ),
                                    ],
                                    id=345597,
                                    creator=models.Person(
                                        name="George Clooney",
                                        obfuscated_id="abc123",
                                    ),
                                    updated_by=models.Person(
                                        name="George Clooney",
                                        obfuscated_id="abc123",
                                    ),
                                    children=[
                                        models.Collection(
                                            name="<value>",
                                            description="boulevard pale collaborate pertinent comparison drat yum rejigger nor finding",
                                            audience_filters=[
                                                models.FacetFilter(
                                                    field_name="type",
                                                    values=[
                                                        models.FacetFilterValue(
                                                            value="Spreadsheet",
                                                            relation_type=models.RelationType.EQUALS,
                                                        ),
                                                        models.FacetFilterValue(
                                                            value="Presentation",
                                                            relation_type=models.RelationType.EQUALS,
                                                        ),
                                                    ],
                                                ),
                                            ],
                                            id=654575,
                                            creator=models.Person(
                                                name="George Clooney",
                                                obfuscated_id="abc123",
                                            ),
                                            updated_by=models.Person(
                                                name="George Clooney",
                                                obfuscated_id="abc123",
                                            ),
                                        ),
                                    ],
                                ),
                                code=models.Code(
                                    repo_name="scio",
                                    file_name="README.md",
                                ),
                                shortcut=models.Shortcut(
                                    input_alias="<value>",
                                    created_by=models.Person(
                                        name="George Clooney",
                                        obfuscated_id="abc123",
                                    ),
                                    updated_by=models.Person(
                                        name="George Clooney",
                                        obfuscated_id="abc123",
                                    ),
                                    destination_document=models.Document(
                                        container_document=models.Document(
                                            metadata=models.DocumentMetadata(
                                                datasource="datasource",
                                                object_type="Feature Request",
                                                container="container",
                                                parent_id="JIRA_EN-1337",
                                                mime_type="mimeType",
                                                document_id="documentId",
                                                create_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                                update_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                                author=models.Person(
                                                    name="name",
                                                    obfuscated_id="<id>",
                                                ),
                                                components=[
                                                    "Backend",
                                                    "Networking",
                                                ],
                                                status="[\"Done\"]",
                                                custom_data={
                                                    "someCustomField": models.CustomDataValue(),
                                                },
                                            ),
                                        ),
                                        parent_document=models.Document(
                                            metadata=models.DocumentMetadata(
                                                datasource="datasource",
                                                object_type="Feature Request",
                                                container="container",
                                                parent_id="JIRA_EN-1337",
                                                mime_type="mimeType",
                                                document_id="documentId",
                                                create_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                                update_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                                author=models.Person(
                                                    name="name",
                                                    obfuscated_id="<id>",
                                                ),
                                                components=[
                                                    "Backend",
                                                    "Networking",
                                                ],
                                                status="[\"Done\"]",
                                                custom_data={
                                                    "someCustomField": models.CustomDataValue(),
                                                },
                                            ),
                                        ),
                                        metadata=models.DocumentMetadata(
                                            datasource="datasource",
                                            object_type="Feature Request",
                                            container="container",
                                            parent_id="JIRA_EN-1337",
                                            mime_type="mimeType",
                                            document_id="documentId",
                                            create_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                            update_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                            author=models.Person(
                                                name="name",
                                                obfuscated_id="<id>",
                                            ),
                                            components=[
                                                "Backend",
                                                "Networking",
                                            ],
                                            status="[\"Done\"]",
                                            custom_data={
                                                "someCustomField": models.CustomDataValue(),
                                            },
                                        ),
                                    ),
                                ),
                                query_suggestions=models.QuerySuggestionList(
                                    person=models.Person(
                                        name="George Clooney",
                                        obfuscated_id="abc123",
                                    ),
                                ),
                                related_documents=[
                                    models.RelatedDocuments(
                                        query_suggestion=models.QuerySuggestion(
                                            query="app:github type:pull author:mortimer",
                                            label="Mortimer's PRs",
                                            datasource="github",
                                        ),
                                        results=[
                                            models.SearchResult(
                                                title="title",
                                                url="https://example.com/foo/bar",
                                                native_app_url="slack://foo/bar",
                                                snippets=[
                                                    models.SearchResultSnippet(
                                                        mime_type="mimeType",
                                                        snippet="snippet",
                                                    ),
                                                ],
                                                must_include_suggestions=models.QuerySuggestionList(
                                                    person=models.Person(
                                                        name="George Clooney",
                                                        obfuscated_id="abc123",
                                                    ),
                                                ),
                                            ),
                                        ],
                                    ),
                                ],
                                related_question=models.RelatedQuestion(
                                    ranges=[
                                        models.TextRange(
                                            start_index=254608,
                                            document=models.Document(
                                                container_document=models.Document(
                                                    metadata=models.DocumentMetadata(
                                                        datasource="datasource",
                                                        object_type="Feature Request",
                                                        container="container",
                                                        parent_id="JIRA_EN-1337",
                                                        mime_type="mimeType",
                                                        document_id="documentId",
                                                        create_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                                        update_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                                        author=models.Person(
                                                            name="name",
                                                            obfuscated_id="<id>",
                                                        ),
                                                        components=[
                                                            "Backend",
                                                            "Networking",
                                                        ],
                                                        status="[\"Done\"]",
                                                        custom_data={
                                                            "someCustomField": models.CustomDataValue(),
                                                        },
                                                    ),
                                                ),
                                                parent_document=models.Document(
                                                    metadata=models.DocumentMetadata(
                                                        datasource="datasource",
                                                        object_type="Feature Request",
                                                        container="container",
                                                        parent_id="JIRA_EN-1337",
                                                        mime_type="mimeType",
                                                        document_id="documentId",
                                                        create_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                                        update_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                                        author=models.Person(
                                                            name="name",
                                                            obfuscated_id="<id>",
                                                        ),
                                                        components=[
                                                            "Backend",
                                                            "Networking",
                                                        ],
                                                        status="[\"Done\"]",
                                                        custom_data={
                                                            "someCustomField": models.CustomDataValue(),
                                                        },
                                                    ),
                                                ),
                                                metadata=models.DocumentMetadata(
                                                    datasource="datasource",
                                                    object_type="Feature Request",
                                                    container="container",
                                                    parent_id="JIRA_EN-1337",
                                                    mime_type="mimeType",
                                                    document_id="documentId",
                                                    create_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                                    update_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                                    author=models.Person(
                                                        name="name",
                                                        obfuscated_id="<id>",
                                                    ),
                                                    components=[
                                                        "Backend",
                                                        "Networking",
                                                    ],
                                                    status="[\"Done\"]",
                                                    custom_data={
                                                        "someCustomField": models.CustomDataValue(),
                                                    },
                                                ),
                                            ),
                                        ),
                                    ],
                                ),
                            ),
                        ),
                    ],
                }, audience_filters=[
                    {
                        "field_name": "type",
                        "values": [
                            {
                                "value": "Spreadsheet",
                                "relation_type": models.RelationType.EQUALS,
                            },
                            {
                                "value": "Presentation",
                                "relation_type": models.RelationType.EQUALS,
                            },
                        ],
                    },
                ])

                # Handle response
                print(res)
        - lang: typescript
          label: Typescript (API Client)
          source: |-
            import { Glean } from "@gleanwork/api-client";
            import { RFCDate } from "@gleanwork/api-client/types";

            const glean = new Glean({
              apiToken: process.env["GLEAN_API_TOKEN"] ?? "",
              instance: process.env["GLEAN_INSTANCE"] ?? "",
            });

            async function run() {
              const result = await glean.client.announcements.create({
                startTime: new Date("2023-05-01T12:02:10.816Z"),
                endTime: new Date("2024-03-17T14:19:30.278Z"),
                title: "<value>",
                body: {
                  text: "From https://en.wikipedia.org/wiki/Diffuse_sky_radiation, the sky is blue because blue light is more strongly scattered than longer-wavelength light.",
                  structuredList: [
                    {
                      link: "https://en.wikipedia.org/wiki/Diffuse_sky_radiation",
                      document: {
                        metadata: {
                          datasource: "datasource",
                          objectType: "Feature Request",
                          container: "container",
                          parentId: "JIRA_EN-1337",
                          mimeType: "mimeType",
                          documentId: "documentId",
                          createTime: new Date("2000-01-23T04:56:07.000Z"),
                          updateTime: new Date("2000-01-23T04:56:07.000Z"),
                          author: {
                            name: "George Clooney",
                            obfuscatedId: "abc123",
                            relatedDocuments: [
                              {
                                querySuggestion: {
                                  query: "app:github type:pull author:mortimer",
                                  searchProviderInfo: {
                                    name: "Google",
                                    searchLinkUrlTemplate: "https://www.google.com/search?q={query}&hl=en",
                                  },
                                  label: "Mortimer's PRs",
                                  datasource: "github",
                                  requestOptions: {
                                    datasourceFilter: "JIRA",
                                    datasourcesFilter: [
                                      "JIRA",
                                    ],
                                    queryOverridesFacetFilters: true,
                                    facetFilters: [
                                      {
                                        fieldName: "type",
                                        values: [
                                          {
                                            value: "Spreadsheet",
                                            relationType: "EQUALS",
                                          },
                                          {
                                            value: "Presentation",
                                            relationType: "EQUALS",
                                          },
                                        ],
                                      },
                                    ],
                                    facetFilterSets: [
                                      {
                                        filters: [
                                          {
                                            fieldName: "type",
                                            values: [
                                              {
                                                value: "Spreadsheet",
                                                relationType: "EQUALS",
                                              },
                                              {
                                                value: "Presentation",
                                                relationType: "EQUALS",
                                              },
                                            ],
                                          },
                                        ],
                                      },
                                      {
                                        filters: [
                                          {
                                            fieldName: "type",
                                            values: [
                                              {
                                                value: "Spreadsheet",
                                                relationType: "EQUALS",
                                              },
                                              {
                                                value: "Presentation",
                                                relationType: "EQUALS",
                                              },
                                            ],
                                          },
                                        ],
                                      },
                                    ],
                                    facetBucketSize: 843281,
                                    authTokens: [
                                      {
                                        accessToken: "123abc",
                                        datasource: "gmail",
                                        scope: "email profile https://www.googleapis.com/auth/gmail.readonly",
                                        tokenType: "Bearer",
                                        authUser: "1",
                                      },
                                    ],
                                  },
                                  ranges: [
                                    {
                                      startIndex: 925801,
                                    },
                                    {
                                      startIndex: 925801,
                                    },
                                    {
                                      startIndex: 925801,
                                    },
                                  ],
                                  inputDetails: {
                                    hasCopyPaste: true,
                                  },
                                },
                                results: [
                                  {
                                    title: "title",
                                    url: "https://example.com/foo/bar",
                                    nativeAppUrl: "slack://foo/bar",
                                    snippets: [
                                      {
                                        mimeType: "mimeType",
                                        snippet: "snippet",
                                      },
                                    ],
                                  },
                                ],
                              },
                              {
                                querySuggestion: {
                                  query: "app:github type:pull author:mortimer",
                                  searchProviderInfo: {
                                    name: "Google",
                                    searchLinkUrlTemplate: "https://www.google.com/search?q={query}&hl=en",
                                  },
                                  label: "Mortimer's PRs",
                                  datasource: "github",
                                  requestOptions: {
                                    datasourceFilter: "JIRA",
                                    datasourcesFilter: [
                                      "JIRA",
                                    ],
                                    queryOverridesFacetFilters: true,
                                    facetFilters: [
                                      {
                                        fieldName: "type",
                                        values: [
                                          {
                                            value: "Spreadsheet",
                                            relationType: "EQUALS",
                                          },
                                          {
                                            value: "Presentation",
                                            relationType: "EQUALS",
                                          },
                                        ],
                                      },
                                    ],
                                    facetFilterSets: [
                                      {
                                        filters: [
                                          {
                                            fieldName: "type",
                                            values: [
                                              {
                                                value: "Spreadsheet",
                                                relationType: "EQUALS",
                                              },
                                              {
                                                value: "Presentation",
                                                relationType: "EQUALS",
                                              },
                                            ],
                                          },
                                        ],
                                      },
                                      {
                                        filters: [
                                          {
                                            fieldName: "type",
                                            values: [
                                              {
                                                value: "Spreadsheet",
                                                relationType: "EQUALS",
                                              },
                                              {
                                                value: "Presentation",
                                                relationType: "EQUALS",
                                              },
                                            ],
                                          },
                                        ],
                                      },
                                    ],
                                    facetBucketSize: 843281,
                                    authTokens: [
                                      {
                                        accessToken: "123abc",
                                        datasource: "gmail",
                                        scope: "email profile https://www.googleapis.com/auth/gmail.readonly",
                                        tokenType: "Bearer",
                                        authUser: "1",
                                      },
                                    ],
                                  },
                                  ranges: [
                                    {
                                      startIndex: 925801,
                                    },
                                    {
                                      startIndex: 925801,
                                    },
                                    {
                                      startIndex: 925801,
                                    },
                                  ],
                                  inputDetails: {
                                    hasCopyPaste: true,
                                  },
                                },
                                results: [
                                  {
                                    title: "title",
                                    url: "https://example.com/foo/bar",
                                    nativeAppUrl: "slack://foo/bar",
                                    snippets: [
                                      {
                                        mimeType: "mimeType",
                                        snippet: "snippet",
                                      },
                                    ],
                                  },
                                ],
                              },
                              {
                                querySuggestion: {
                                  query: "app:github type:pull author:mortimer",
                                  searchProviderInfo: {
                                    name: "Google",
                                    searchLinkUrlTemplate: "https://www.google.com/search?q={query}&hl=en",
                                  },
                                  label: "Mortimer's PRs",
                                  datasource: "github",
                                  requestOptions: {
                                    datasourceFilter: "JIRA",
                                    datasourcesFilter: [
                                      "JIRA",
                                    ],
                                    queryOverridesFacetFilters: true,
                                    facetFilters: [
                                      {
                                        fieldName: "type",
                                        values: [
                                          {
                                            value: "Spreadsheet",
                                            relationType: "EQUALS",
                                          },
                                          {
                                            value: "Presentation",
                                            relationType: "EQUALS",
                                          },
                                        ],
                                      },
                                    ],
                                    facetFilterSets: [
                                      {
                                        filters: [
                                          {
                                            fieldName: "type",
                                            values: [
                                              {
                                                value: "Spreadsheet",
                                                relationType: "EQUALS",
                                              },
                                              {
                                                value: "Presentation",
                                                relationType: "EQUALS",
                                              },
                                            ],
                                          },
                                        ],
                                      },
                                      {
                                        filters: [
                                          {
                                            fieldName: "type",
                                            values: [
                                              {
                                                value: "Spreadsheet",
                                                relationType: "EQUALS",
                                              },
                                              {
                                                value: "Presentation",
                                                relationType: "EQUALS",
                                              },
                                            ],
                                          },
                                        ],
                                      },
                                    ],
                                    facetBucketSize: 843281,
                                    authTokens: [
                                      {
                                        accessToken: "123abc",
                                        datasource: "gmail",
                                        scope: "email profile https://www.googleapis.com/auth/gmail.readonly",
                                        tokenType: "Bearer",
                                        authUser: "1",
                                      },
                                    ],
                                  },
                                  ranges: [
                                    {
                                      startIndex: 925801,
                                    },
                                    {
                                      startIndex: 925801,
                                    },
                                    {
                                      startIndex: 925801,
                                    },
                                  ],
                                  inputDetails: {
                                    hasCopyPaste: true,
                                  },
                                },
                                results: [
                                  {
                                    title: "title",
                                    url: "https://example.com/foo/bar",
                                    nativeAppUrl: "slack://foo/bar",
                                    snippets: [
                                      {
                                        mimeType: "mimeType",
                                        snippet: "snippet",
                                      },
                                    ],
                                  },
                                ],
                              },
                            ],
                            metadata: {
                              type: "FULL_TIME",
                              title: "Actor",
                              department: "Movies",
                              email: "george@example.com",
                              location: "Hollywood, CA",
                              phone: "6505551234",
                              photoUrl: "https://example.com/george.jpg",
                              startDate: new RFCDate("2000-01-23"),
                              datasourceProfile: [
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                              ],
                              querySuggestions: {
                                suggestions: [
                                  {
                                    query: "app:github type:pull author:mortimer",
                                    label: "Mortimer's PRs",
                                    datasource: "github",
                                  },
                                ],
                              },
                              inviteInfo: {
                                invites: [
                                  {},
                                  {},
                                  {},
                                ],
                              },
                              customFields: [
                                {
                                  label: "<value>",
                                  values: [
                                    {},
                                    {},
                                  ],
                                },
                                {
                                  label: "<value>",
                                  values: [
                                    {},
                                    {},
                                  ],
                                },
                                {
                                  label: "<value>",
                                  values: [
                                    {},
                                    {},
                                  ],
                                },
                              ],
                              badges: [
                                {
                                  key: "deployment_name_new_hire",
                                  displayName: "New hire",
                                  iconConfig: {
                                    color: "#343CED",
                                    key: "person_icon",
                                    iconType: "GLYPH",
                                    name: "user",
                                  },
                                },
                              ],
                            },
                          },
                          owner: {
                            name: "George Clooney",
                            obfuscatedId: "abc123",
                            metadata: {
                              type: "FULL_TIME",
                              title: "Actor",
                              department: "Movies",
                              email: "george@example.com",
                              location: "Hollywood, CA",
                              phone: "6505551234",
                              photoUrl: "https://example.com/george.jpg",
                              startDate: new RFCDate("2000-01-23"),
                              datasourceProfile: [
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                              ],
                              querySuggestions: {
                                suggestions: [
                                  {
                                    query: "app:github type:pull author:mortimer",
                                    label: "Mortimer's PRs",
                                    datasource: "github",
                                  },
                                ],
                              },
                              inviteInfo: {
                                invites: [
                                  {},
                                  {},
                                  {},
                                ],
                              },
                              badges: [
                                {
                                  key: "deployment_name_new_hire",
                                  displayName: "New hire",
                                  iconConfig: {
                                    color: "#343CED",
                                    key: "person_icon",
                                    iconType: "GLYPH",
                                    name: "user",
                                  },
                                },
                              ],
                            },
                          },
                          mentionedPeople: [
                            {
                              name: "George Clooney",
                              obfuscatedId: "abc123",
                            },
                          ],
                          components: [
                            "Backend",
                            "Networking",
                          ],
                          status: "[\"Done\"]",
                          pins: [
                            {
                              audienceFilters: [
                                {
                                  fieldName: "type",
                                  values: [
                                    {
                                      value: "Spreadsheet",
                                      relationType: "EQUALS",
                                    },
                                    {
                                      value: "Presentation",
                                      relationType: "EQUALS",
                                    },
                                  ],
                                },
                              ],
                              documentId: "<id>",
                              attribution: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  querySuggestions: {
                                    suggestions: [
                                      {
                                        query: "app:github type:pull author:mortimer",
                                        label: "Mortimer's PRs",
                                        datasource: "github",
                                      },
                                    ],
                                  },
                                  inviteInfo: {
                                    invites: [
                                      {},
                                      {},
                                      {},
                                    ],
                                  },
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                              updatedBy: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  querySuggestions: {
                                    suggestions: [
                                      {
                                        query: "app:github type:pull author:mortimer",
                                        label: "Mortimer's PRs",
                                        datasource: "github",
                                      },
                                    ],
                                  },
                                  inviteInfo: {
                                    invites: [
                                      {},
                                      {},
                                      {},
                                    ],
                                  },
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                            },
                            {
                              audienceFilters: [
                                {
                                  fieldName: "type",
                                  values: [
                                    {
                                      value: "Spreadsheet",
                                      relationType: "EQUALS",
                                    },
                                    {
                                      value: "Presentation",
                                      relationType: "EQUALS",
                                    },
                                  ],
                                },
                              ],
                              documentId: "<id>",
                              attribution: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  querySuggestions: {
                                    suggestions: [
                                      {
                                        query: "app:github type:pull author:mortimer",
                                        label: "Mortimer's PRs",
                                        datasource: "github",
                                      },
                                    ],
                                  },
                                  inviteInfo: {
                                    invites: [
                                      {},
                                      {},
                                      {},
                                    ],
                                  },
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                              updatedBy: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  querySuggestions: {
                                    suggestions: [
                                      {
                                        query: "app:github type:pull author:mortimer",
                                        label: "Mortimer's PRs",
                                        datasource: "github",
                                      },
                                    ],
                                  },
                                  inviteInfo: {
                                    invites: [
                                      {},
                                      {},
                                      {},
                                    ],
                                  },
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                            },
                          ],
                          assignedTo: {
                            name: "George Clooney",
                            obfuscatedId: "abc123",
                            metadata: {
                              type: "FULL_TIME",
                              title: "Actor",
                              department: "Movies",
                              email: "george@example.com",
                              location: "Hollywood, CA",
                              phone: "6505551234",
                              photoUrl: "https://example.com/george.jpg",
                              startDate: new RFCDate("2000-01-23"),
                              datasourceProfile: [
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                              ],
                              querySuggestions: {
                                suggestions: [
                                  {
                                    query: "app:github type:pull author:mortimer",
                                    label: "Mortimer's PRs",
                                    datasource: "github",
                                  },
                                ],
                              },
                              inviteInfo: {
                                invites: [
                                  {},
                                  {},
                                  {},
                                ],
                              },
                              badges: [
                                {
                                  key: "deployment_name_new_hire",
                                  displayName: "New hire",
                                  iconConfig: {
                                    color: "#343CED",
                                    key: "person_icon",
                                    iconType: "GLYPH",
                                    name: "user",
                                  },
                                },
                              ],
                            },
                          },
                          updatedBy: {
                            name: "George Clooney",
                            obfuscatedId: "abc123",
                            metadata: {
                              type: "FULL_TIME",
                              title: "Actor",
                              department: "Movies",
                              email: "george@example.com",
                              location: "Hollywood, CA",
                              phone: "6505551234",
                              photoUrl: "https://example.com/george.jpg",
                              startDate: new RFCDate("2000-01-23"),
                              datasourceProfile: [
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                              ],
                              querySuggestions: {
                                suggestions: [
                                  {
                                    query: "app:github type:pull author:mortimer",
                                    label: "Mortimer's PRs",
                                    datasource: "github",
                                  },
                                ],
                              },
                              inviteInfo: {
                                invites: [
                                  {},
                                  {},
                                  {},
                                ],
                              },
                              badges: [
                                {
                                  key: "deployment_name_new_hire",
                                  displayName: "New hire",
                                  iconConfig: {
                                    color: "#343CED",
                                    key: "person_icon",
                                    iconType: "GLYPH",
                                    name: "user",
                                  },
                                },
                              ],
                            },
                          },
                          collections: [
                            {
                              name: "<value>",
                              description: "perfectly flustered dimly",
                              addedRoles: [
                                {
                                  person: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      querySuggestions: {
                                        suggestions: [
                                          {
                                            query: "app:github type:pull author:mortimer",
                                            label: "Mortimer's PRs",
                                            datasource: "github",
                                          },
                                        ],
                                      },
                                      inviteInfo: {
                                        invites: [
                                          {},
                                          {},
                                          {},
                                        ],
                                      },
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  role: "ANSWER_MODERATOR",
                                },
                                {
                                  person: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      querySuggestions: {
                                        suggestions: [
                                          {
                                            query: "app:github type:pull author:mortimer",
                                            label: "Mortimer's PRs",
                                            datasource: "github",
                                          },
                                        ],
                                      },
                                      inviteInfo: {
                                        invites: [
                                          {},
                                          {},
                                          {},
                                        ],
                                      },
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  role: "ANSWER_MODERATOR",
                                },
                                {
                                  person: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      querySuggestions: {
                                        suggestions: [
                                          {
                                            query: "app:github type:pull author:mortimer",
                                            label: "Mortimer's PRs",
                                            datasource: "github",
                                          },
                                        ],
                                      },
                                      inviteInfo: {
                                        invites: [
                                          {},
                                          {},
                                          {},
                                        ],
                                      },
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  role: "ANSWER_MODERATOR",
                                },
                              ],
                              removedRoles: [
                                {
                                  person: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      querySuggestions: {
                                        suggestions: [
                                          {
                                            query: "app:github type:pull author:mortimer",
                                            label: "Mortimer's PRs",
                                            datasource: "github",
                                          },
                                        ],
                                      },
                                      inviteInfo: {
                                        invites: [
                                          {},
                                          {},
                                          {},
                                        ],
                                      },
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  role: "VERIFIER",
                                },
                              ],
                              audienceFilters: [
                                {
                                  fieldName: "type",
                                  values: [
                                    {
                                      value: "Spreadsheet",
                                      relationType: "EQUALS",
                                    },
                                    {
                                      value: "Presentation",
                                      relationType: "EQUALS",
                                    },
                                  ],
                                },
                              ],
                              id: 83242,
                              creator: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  querySuggestions: {
                                    suggestions: [
                                      {
                                        query: "app:github type:pull author:mortimer",
                                        label: "Mortimer's PRs",
                                        datasource: "github",
                                      },
                                    ],
                                  },
                                  inviteInfo: {
                                    invites: [
                                      {},
                                      {},
                                      {},
                                    ],
                                  },
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                              updatedBy: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  querySuggestions: {
                                    suggestions: [
                                      {
                                        query: "app:github type:pull author:mortimer",
                                        label: "Mortimer's PRs",
                                        datasource: "github",
                                      },
                                    ],
                                  },
                                  inviteInfo: {
                                    invites: [
                                      {},
                                      {},
                                      {},
                                    ],
                                  },
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                              items: [
                                {
                                  collectionId: 420359,
                                  createdBy: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      querySuggestions: {
                                        suggestions: [
                                          {
                                            query: "app:github type:pull author:mortimer",
                                            label: "Mortimer's PRs",
                                            datasource: "github",
                                          },
                                        ],
                                      },
                                      inviteInfo: {
                                        invites: [
                                          {},
                                          {},
                                          {},
                                        ],
                                      },
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  shortcut: {
                                    inputAlias: "<value>",
                                    createdBy: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    updatedBy: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    roles: [
                                      {
                                        person: {
                                          name: "George Clooney",
                                          obfuscatedId: "abc123",
                                          metadata: {
                                            type: "FULL_TIME",
                                            title: "Actor",
                                            department: "Movies",
                                            email: "george@example.com",
                                            location: "Hollywood, CA",
                                            phone: "6505551234",
                                            photoUrl: "https://example.com/george.jpg",
                                            startDate: new RFCDate("2000-01-23"),
                                            datasourceProfile: [
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                            ],
                                            querySuggestions: {
                                              suggestions: [
                                                {
                                                  query: "app:github type:pull author:mortimer",
                                                  label: "Mortimer's PRs",
                                                  datasource: "github",
                                                },
                                              ],
                                            },
                                            inviteInfo: {
                                              invites: [
                                                {},
                                                {},
                                                {},
                                              ],
                                            },
                                            badges: [
                                              {
                                                key: "deployment_name_new_hire",
                                                displayName: "New hire",
                                                iconConfig: {
                                                  color: "#343CED",
                                                  key: "person_icon",
                                                  iconType: "GLYPH",
                                                  name: "user",
                                                },
                                              },
                                            ],
                                          },
                                        },
                                        role: "ANSWER_MODERATOR",
                                      },
                                      {
                                        person: {
                                          name: "George Clooney",
                                          obfuscatedId: "abc123",
                                          metadata: {
                                            type: "FULL_TIME",
                                            title: "Actor",
                                            department: "Movies",
                                            email: "george@example.com",
                                            location: "Hollywood, CA",
                                            phone: "6505551234",
                                            photoUrl: "https://example.com/george.jpg",
                                            startDate: new RFCDate("2000-01-23"),
                                            datasourceProfile: [
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                            ],
                                            querySuggestions: {
                                              suggestions: [
                                                {
                                                  query: "app:github type:pull author:mortimer",
                                                  label: "Mortimer's PRs",
                                                  datasource: "github",
                                                },
                                              ],
                                            },
                                            inviteInfo: {
                                              invites: [
                                                {},
                                                {},
                                                {},
                                              ],
                                            },
                                            badges: [
                                              {
                                                key: "deployment_name_new_hire",
                                                displayName: "New hire",
                                                iconConfig: {
                                                  color: "#343CED",
                                                  key: "person_icon",
                                                  iconType: "GLYPH",
                                                  name: "user",
                                                },
                                              },
                                            ],
                                          },
                                        },
                                        role: "ANSWER_MODERATOR",
                                      },
                                    ],
                                  },
                                  itemType: "COLLECTION",
                                },
                                {
                                  collectionId: 420359,
                                  createdBy: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      querySuggestions: {
                                        suggestions: [
                                          {
                                            query: "app:github type:pull author:mortimer",
                                            label: "Mortimer's PRs",
                                            datasource: "github",
                                          },
                                        ],
                                      },
                                      inviteInfo: {
                                        invites: [
                                          {},
                                          {},
                                          {},
                                        ],
                                      },
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  shortcut: {
                                    inputAlias: "<value>",
                                    createdBy: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    updatedBy: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    roles: [
                                      {
                                        person: {
                                          name: "George Clooney",
                                          obfuscatedId: "abc123",
                                          metadata: {
                                            type: "FULL_TIME",
                                            title: "Actor",
                                            department: "Movies",
                                            email: "george@example.com",
                                            location: "Hollywood, CA",
                                            phone: "6505551234",
                                            photoUrl: "https://example.com/george.jpg",
                                            startDate: new RFCDate("2000-01-23"),
                                            datasourceProfile: [
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                            ],
                                            querySuggestions: {
                                              suggestions: [
                                                {
                                                  query: "app:github type:pull author:mortimer",
                                                  label: "Mortimer's PRs",
                                                  datasource: "github",
                                                },
                                              ],
                                            },
                                            inviteInfo: {
                                              invites: [
                                                {},
                                                {},
                                                {},
                                              ],
                                            },
                                            badges: [
                                              {
                                                key: "deployment_name_new_hire",
                                                displayName: "New hire",
                                                iconConfig: {
                                                  color: "#343CED",
                                                  key: "person_icon",
                                                  iconType: "GLYPH",
                                                  name: "user",
                                                },
                                              },
                                            ],
                                          },
                                        },
                                        role: "ANSWER_MODERATOR",
                                      },
                                      {
                                        person: {
                                          name: "George Clooney",
                                          obfuscatedId: "abc123",
                                          metadata: {
                                            type: "FULL_TIME",
                                            title: "Actor",
                                            department: "Movies",
                                            email: "george@example.com",
                                            location: "Hollywood, CA",
                                            phone: "6505551234",
                                            photoUrl: "https://example.com/george.jpg",
                                            startDate: new RFCDate("2000-01-23"),
                                            datasourceProfile: [
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                            ],
                                            querySuggestions: {
                                              suggestions: [
                                                {
                                                  query: "app:github type:pull author:mortimer",
                                                  label: "Mortimer's PRs",
                                                  datasource: "github",
                                                },
                                              ],
                                            },
                                            inviteInfo: {
                                              invites: [
                                                {},
                                                {},
                                                {},
                                              ],
                                            },
                                            badges: [
                                              {
                                                key: "deployment_name_new_hire",
                                                displayName: "New hire",
                                                iconConfig: {
                                                  color: "#343CED",
                                                  key: "person_icon",
                                                  iconType: "GLYPH",
                                                  name: "user",
                                                },
                                              },
                                            ],
                                          },
                                        },
                                        role: "ANSWER_MODERATOR",
                                      },
                                    ],
                                  },
                                  itemType: "COLLECTION",
                                },
                              ],
                            },
                          ],
                          interactions: {
                            reacts: [
                              {
                                reactors: [
                                  {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                  },
                                ],
                              },
                              {
                                reactors: [
                                  {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                  },
                                ],
                              },
                            ],
                            shares: [
                              {
                                numDaysAgo: 582012,
                                sharer: {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                  metadata: {
                                    type: "FULL_TIME",
                                    title: "Actor",
                                    department: "Movies",
                                    email: "george@example.com",
                                    location: "Hollywood, CA",
                                    phone: "6505551234",
                                    photoUrl: "https://example.com/george.jpg",
                                    startDate: new RFCDate("2000-01-23"),
                                    datasourceProfile: [
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                    ],
                                    querySuggestions: {
                                      suggestions: [
                                        {
                                          query: "app:github type:pull author:mortimer",
                                          label: "Mortimer's PRs",
                                          datasource: "github",
                                        },
                                      ],
                                    },
                                    inviteInfo: {
                                      invites: [
                                        {},
                                        {},
                                        {},
                                      ],
                                    },
                                    badges: [
                                      {
                                        key: "deployment_name_new_hire",
                                        displayName: "New hire",
                                        iconConfig: {
                                          color: "#343CED",
                                          key: "person_icon",
                                          iconType: "GLYPH",
                                          name: "user",
                                        },
                                      },
                                    ],
                                  },
                                },
                              },
                            ],
                          },
                          verification: {
                            state: "DEPRECATED",
                            metadata: {
                              lastVerifier: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  querySuggestions: {
                                    suggestions: [
                                      {
                                        query: "app:github type:pull author:mortimer",
                                        label: "Mortimer's PRs",
                                        datasource: "github",
                                      },
                                    ],
                                  },
                                  inviteInfo: {
                                    invites: [
                                      {},
                                      {},
                                      {},
                                    ],
                                  },
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                              reminders: [
                                {
                                  assignee: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      querySuggestions: {
                                        suggestions: [
                                          {
                                            query: "app:github type:pull author:mortimer",
                                            label: "Mortimer's PRs",
                                            datasource: "github",
                                          },
                                        ],
                                      },
                                      inviteInfo: {
                                        invites: [
                                          {},
                                          {},
                                          {},
                                        ],
                                      },
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  requestor: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      querySuggestions: {
                                        suggestions: [
                                          {
                                            query: "app:github type:pull author:mortimer",
                                            label: "Mortimer's PRs",
                                            datasource: "github",
                                          },
                                        ],
                                      },
                                      inviteInfo: {
                                        invites: [
                                          {},
                                          {},
                                          {},
                                        ],
                                      },
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  remindAt: 785622,
                                },
                                {
                                  assignee: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      querySuggestions: {
                                        suggestions: [
                                          {
                                            query: "app:github type:pull author:mortimer",
                                            label: "Mortimer's PRs",
                                            datasource: "github",
                                          },
                                        ],
                                      },
                                      inviteInfo: {
                                        invites: [
                                          {},
                                          {},
                                          {},
                                        ],
                                      },
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  requestor: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      querySuggestions: {
                                        suggestions: [
                                          {
                                            query: "app:github type:pull author:mortimer",
                                            label: "Mortimer's PRs",
                                            datasource: "github",
                                          },
                                        ],
                                      },
                                      inviteInfo: {
                                        invites: [
                                          {},
                                          {},
                                          {},
                                        ],
                                      },
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  remindAt: 785622,
                                },
                                {
                                  assignee: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      querySuggestions: {
                                        suggestions: [
                                          {
                                            query: "app:github type:pull author:mortimer",
                                            label: "Mortimer's PRs",
                                            datasource: "github",
                                          },
                                        ],
                                      },
                                      inviteInfo: {
                                        invites: [
                                          {},
                                          {},
                                          {},
                                        ],
                                      },
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  requestor: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      querySuggestions: {
                                        suggestions: [
                                          {
                                            query: "app:github type:pull author:mortimer",
                                            label: "Mortimer's PRs",
                                            datasource: "github",
                                          },
                                        ],
                                      },
                                      inviteInfo: {
                                        invites: [
                                          {},
                                          {},
                                          {},
                                        ],
                                      },
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  remindAt: 785622,
                                },
                              ],
                              lastReminder: {
                                assignee: {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                  metadata: {
                                    type: "FULL_TIME",
                                    title: "Actor",
                                    department: "Movies",
                                    email: "george@example.com",
                                    location: "Hollywood, CA",
                                    phone: "6505551234",
                                    photoUrl: "https://example.com/george.jpg",
                                    startDate: new RFCDate("2000-01-23"),
                                    datasourceProfile: [
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                    ],
                                    querySuggestions: {
                                      suggestions: [
                                        {
                                          query: "app:github type:pull author:mortimer",
                                          label: "Mortimer's PRs",
                                          datasource: "github",
                                        },
                                      ],
                                    },
                                    inviteInfo: {
                                      invites: [
                                        {},
                                        {},
                                        {},
                                      ],
                                    },
                                    badges: [
                                      {
                                        key: "deployment_name_new_hire",
                                        displayName: "New hire",
                                        iconConfig: {
                                          color: "#343CED",
                                          key: "person_icon",
                                          iconType: "GLYPH",
                                          name: "user",
                                        },
                                      },
                                    ],
                                  },
                                },
                                requestor: {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                  metadata: {
                                    type: "FULL_TIME",
                                    title: "Actor",
                                    department: "Movies",
                                    email: "george@example.com",
                                    location: "Hollywood, CA",
                                    phone: "6505551234",
                                    photoUrl: "https://example.com/george.jpg",
                                    startDate: new RFCDate("2000-01-23"),
                                    datasourceProfile: [
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                    ],
                                    querySuggestions: {
                                      suggestions: [
                                        {
                                          query: "app:github type:pull author:mortimer",
                                          label: "Mortimer's PRs",
                                          datasource: "github",
                                        },
                                      ],
                                    },
                                    inviteInfo: {
                                      invites: [
                                        {},
                                        {},
                                        {},
                                      ],
                                    },
                                    badges: [
                                      {
                                        key: "deployment_name_new_hire",
                                        displayName: "New hire",
                                        iconConfig: {
                                          color: "#343CED",
                                          key: "person_icon",
                                          iconType: "GLYPH",
                                          name: "user",
                                        },
                                      },
                                    ],
                                  },
                                },
                                remindAt: 269943,
                              },
                              candidateVerifiers: [
                                {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                },
                              ],
                            },
                          },
                          shortcuts: [
                            {
                              inputAlias: "<value>",
                              createdBy: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  querySuggestions: {
                                    suggestions: [
                                      {
                                        query: "app:github type:pull author:mortimer",
                                        label: "Mortimer's PRs",
                                        datasource: "github",
                                      },
                                    ],
                                  },
                                  inviteInfo: {
                                    invites: [
                                      {},
                                      {},
                                      {},
                                    ],
                                  },
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                              updatedBy: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  querySuggestions: {
                                    suggestions: [
                                      {
                                        query: "app:github type:pull author:mortimer",
                                        label: "Mortimer's PRs",
                                        datasource: "github",
                                      },
                                    ],
                                  },
                                  inviteInfo: {
                                    invites: [
                                      {},
                                      {},
                                      {},
                                    ],
                                  },
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                            },
                          ],
                          customData: {
                            "someCustomField": {},
                          },
                          contactPerson: {
                            name: "George Clooney",
                            obfuscatedId: "abc123",
                            metadata: {
                              type: "FULL_TIME",
                              title: "Actor",
                              department: "Movies",
                              email: "george@example.com",
                              location: "Hollywood, CA",
                              phone: "6505551234",
                              photoUrl: "https://example.com/george.jpg",
                              startDate: new RFCDate("2000-01-23"),
                              datasourceProfile: [
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                              ],
                              querySuggestions: {
                                suggestions: [
                                  {
                                    query: "app:github type:pull author:mortimer",
                                    label: "Mortimer's PRs",
                                    datasource: "github",
                                  },
                                ],
                              },
                              inviteInfo: {
                                invites: [
                                  {},
                                  {},
                                  {},
                                ],
                              },
                              badges: [
                                {
                                  key: "deployment_name_new_hire",
                                  displayName: "New hire",
                                  iconConfig: {
                                    color: "#343CED",
                                    key: "person_icon",
                                    iconType: "GLYPH",
                                    name: "user",
                                  },
                                },
                              ],
                            },
                          },
                        },
                      },
                      text: "Because its wavelengths are shorter, blue light is more strongly scattered than the longer-wavelength lights, red or green. Hence the result that when looking at the sky away from the direct incident sunlight, the human eye perceives the sky to be blue.",
                      structuredResult: {
                        document: {
                          metadata: {
                            datasource: "datasource",
                            objectType: "Feature Request",
                            container: "container",
                            parentId: "JIRA_EN-1337",
                            mimeType: "mimeType",
                            documentId: "documentId",
                            createTime: new Date("2000-01-23T04:56:07.000Z"),
                            updateTime: new Date("2000-01-23T04:56:07.000Z"),
                            author: {
                              name: "George Clooney",
                              obfuscatedId: "abc123",
                              relatedDocuments: [
                                {
                                  querySuggestion: {
                                    query: "app:github type:pull author:mortimer",
                                    searchProviderInfo: {
                                      name: "Google",
                                      searchLinkUrlTemplate: "https://www.google.com/search?q={query}&hl=en",
                                    },
                                    label: "Mortimer's PRs",
                                    datasource: "github",
                                    requestOptions: {
                                      datasourceFilter: "JIRA",
                                      datasourcesFilter: [
                                        "JIRA",
                                      ],
                                      queryOverridesFacetFilters: true,
                                      facetFilters: [
                                        {
                                          fieldName: "type",
                                          values: [
                                            {
                                              value: "Spreadsheet",
                                              relationType: "EQUALS",
                                            },
                                            {
                                              value: "Presentation",
                                              relationType: "EQUALS",
                                            },
                                          ],
                                        },
                                      ],
                                      facetFilterSets: [
                                        {
                                          filters: [
                                            {
                                              fieldName: "type",
                                              values: [
                                                {
                                                  value: "Spreadsheet",
                                                  relationType: "EQUALS",
                                                },
                                                {
                                                  value: "Presentation",
                                                  relationType: "EQUALS",
                                                },
                                              ],
                                            },
                                          ],
                                        },
                                        {
                                          filters: [
                                            {
                                              fieldName: "type",
                                              values: [
                                                {
                                                  value: "Spreadsheet",
                                                  relationType: "EQUALS",
                                                },
                                                {
                                                  value: "Presentation",
                                                  relationType: "EQUALS",
                                                },
                                              ],
                                            },
                                          ],
                                        },
                                      ],
                                      facetBucketSize: 843281,
                                      authTokens: [
                                        {
                                          accessToken: "123abc",
                                          datasource: "gmail",
                                          scope: "email profile https://www.googleapis.com/auth/gmail.readonly",
                                          tokenType: "Bearer",
                                          authUser: "1",
                                        },
                                      ],
                                    },
                                    ranges: [
                                      {
                                        startIndex: 925801,
                                      },
                                      {
                                        startIndex: 925801,
                                      },
                                      {
                                        startIndex: 925801,
                                      },
                                    ],
                                    inputDetails: {
                                      hasCopyPaste: true,
                                    },
                                  },
                                  results: [
                                    {
                                      title: "title",
                                      url: "https://example.com/foo/bar",
                                      nativeAppUrl: "slack://foo/bar",
                                      snippets: [
                                        {
                                          mimeType: "mimeType",
                                          snippet: "snippet",
                                        },
                                      ],
                                    },
                                  ],
                                },
                                {
                                  querySuggestion: {
                                    query: "app:github type:pull author:mortimer",
                                    searchProviderInfo: {
                                      name: "Google",
                                      searchLinkUrlTemplate: "https://www.google.com/search?q={query}&hl=en",
                                    },
                                    label: "Mortimer's PRs",
                                    datasource: "github",
                                    requestOptions: {
                                      datasourceFilter: "JIRA",
                                      datasourcesFilter: [
                                        "JIRA",
                                      ],
                                      queryOverridesFacetFilters: true,
                                      facetFilters: [
                                        {
                                          fieldName: "type",
                                          values: [
                                            {
                                              value: "Spreadsheet",
                                              relationType: "EQUALS",
                                            },
                                            {
                                              value: "Presentation",
                                              relationType: "EQUALS",
                                            },
                                          ],
                                        },
                                      ],
                                      facetFilterSets: [
                                        {
                                          filters: [
                                            {
                                              fieldName: "type",
                                              values: [
                                                {
                                                  value: "Spreadsheet",
                                                  relationType: "EQUALS",
                                                },
                                                {
                                                  value: "Presentation",
                                                  relationType: "EQUALS",
                                                },
                                              ],
                                            },
                                          ],
                                        },
                                        {
                                          filters: [
                                            {
                                              fieldName: "type",
                                              values: [
                                                {
                                                  value: "Spreadsheet",
                                                  relationType: "EQUALS",
                                                },
                                                {
                                                  value: "Presentation",
                                                  relationType: "EQUALS",
                                                },
                                              ],
                                            },
                                          ],
                                        },
                                      ],
                                      facetBucketSize: 843281,
                                      authTokens: [
                                        {
                                          accessToken: "123abc",
                                          datasource: "gmail",
                                          scope: "email profile https://www.googleapis.com/auth/gmail.readonly",
                                          tokenType: "Bearer",
                                          authUser: "1",
                                        },
                                      ],
                                    },
                                    ranges: [
                                      {
                                        startIndex: 925801,
                                      },
                                      {
                                        startIndex: 925801,
                                      },
                                      {
                                        startIndex: 925801,
                                      },
                                    ],
                                    inputDetails: {
                                      hasCopyPaste: true,
                                    },
                                  },
                                  results: [
                                    {
                                      title: "title",
                                      url: "https://example.com/foo/bar",
                                      nativeAppUrl: "slack://foo/bar",
                                      snippets: [
                                        {
                                          mimeType: "mimeType",
                                          snippet: "snippet",
                                        },
                                      ],
                                    },
                                  ],
                                },
                                {
                                  querySuggestion: {
                                    query: "app:github type:pull author:mortimer",
                                    searchProviderInfo: {
                                      name: "Google",
                                      searchLinkUrlTemplate: "https://www.google.com/search?q={query}&hl=en",
                                    },
                                    label: "Mortimer's PRs",
                                    datasource: "github",
                                    requestOptions: {
                                      datasourceFilter: "JIRA",
                                      datasourcesFilter: [
                                        "JIRA",
                                      ],
                                      queryOverridesFacetFilters: true,
                                      facetFilters: [
                                        {
                                          fieldName: "type",
                                          values: [
                                            {
                                              value: "Spreadsheet",
                                              relationType: "EQUALS",
                                            },
                                            {
                                              value: "Presentation",
                                              relationType: "EQUALS",
                                            },
                                          ],
                                        },
                                      ],
                                      facetFilterSets: [
                                        {
                                          filters: [
                                            {
                                              fieldName: "type",
                                              values: [
                                                {
                                                  value: "Spreadsheet",
                                                  relationType: "EQUALS",
                                                },
                                                {
                                                  value: "Presentation",
                                                  relationType: "EQUALS",
                                                },
                                              ],
                                            },
                                          ],
                                        },
                                        {
                                          filters: [
                                            {
                                              fieldName: "type",
                                              values: [
                                                {
                                                  value: "Spreadsheet",
                                                  relationType: "EQUALS",
                                                },
                                                {
                                                  value: "Presentation",
                                                  relationType: "EQUALS",
                                                },
                                              ],
                                            },
                                          ],
                                        },
                                      ],
                                      facetBucketSize: 843281,
                                      authTokens: [
                                        {
                                          accessToken: "123abc",
                                          datasource: "gmail",
                                          scope: "email profile https://www.googleapis.com/auth/gmail.readonly",
                                          tokenType: "Bearer",
                                          authUser: "1",
                                        },
                                      ],
                                    },
                                    ranges: [
                                      {
                                        startIndex: 925801,
                                      },
                                      {
                                        startIndex: 925801,
                                      },
                                      {
                                        startIndex: 925801,
                                      },
                                    ],
                                    inputDetails: {
                                      hasCopyPaste: true,
                                    },
                                  },
                                  results: [
                                    {
                                      title: "title",
                                      url: "https://example.com/foo/bar",
                                      nativeAppUrl: "slack://foo/bar",
                                      snippets: [
                                        {
                                          mimeType: "mimeType",
                                          snippet: "snippet",
                                        },
                                      ],
                                    },
                                  ],
                                },
                              ],
                              metadata: {
                                type: "FULL_TIME",
                                title: "Actor",
                                department: "Movies",
                                email: "george@example.com",
                                location: "Hollywood, CA",
                                phone: "6505551234",
                                photoUrl: "https://example.com/george.jpg",
                                startDate: new RFCDate("2000-01-23"),
                                datasourceProfile: [
                                  {
                                    datasource: "github",
                                    handle: "<value>",
                                  },
                                  {
                                    datasource: "github",
                                    handle: "<value>",
                                  },
                                  {
                                    datasource: "github",
                                    handle: "<value>",
                                  },
                                ],
                                querySuggestions: {
                                  suggestions: [
                                    {
                                      query: "app:github type:pull author:mortimer",
                                      label: "Mortimer's PRs",
                                      datasource: "github",
                                    },
                                  ],
                                },
                                inviteInfo: {
                                  invites: [
                                    {},
                                    {},
                                    {},
                                  ],
                                },
                                customFields: [
                                  {
                                    label: "<value>",
                                    values: [
                                      {},
                                      {},
                                    ],
                                  },
                                  {
                                    label: "<value>",
                                    values: [
                                      {},
                                      {},
                                    ],
                                  },
                                  {
                                    label: "<value>",
                                    values: [
                                      {},
                                      {},
                                    ],
                                  },
                                ],
                                badges: [
                                  {
                                    key: "deployment_name_new_hire",
                                    displayName: "New hire",
                                    iconConfig: {
                                      color: "#343CED",
                                      key: "person_icon",
                                      iconType: "GLYPH",
                                      name: "user",
                                    },
                                  },
                                ],
                              },
                            },
                            owner: {
                              name: "George Clooney",
                              obfuscatedId: "abc123",
                              metadata: {
                                type: "FULL_TIME",
                                title: "Actor",
                                department: "Movies",
                                email: "george@example.com",
                                location: "Hollywood, CA",
                                phone: "6505551234",
                                photoUrl: "https://example.com/george.jpg",
                                startDate: new RFCDate("2000-01-23"),
                                datasourceProfile: [
                                  {
                                    datasource: "github",
                                    handle: "<value>",
                                  },
                                  {
                                    datasource: "github",
                                    handle: "<value>",
                                  },
                                  {
                                    datasource: "github",
                                    handle: "<value>",
                                  },
                                ],
                                querySuggestions: {
                                  suggestions: [
                                    {
                                      query: "app:github type:pull author:mortimer",
                                      label: "Mortimer's PRs",
                                      datasource: "github",
                                    },
                                  ],
                                },
                                inviteInfo: {
                                  invites: [
                                    {},
                                    {},
                                    {},
                                  ],
                                },
                                badges: [
                                  {
                                    key: "deployment_name_new_hire",
                                    displayName: "New hire",
                                    iconConfig: {
                                      color: "#343CED",
                                      key: "person_icon",
                                      iconType: "GLYPH",
                                      name: "user",
                                    },
                                  },
                                ],
                              },
                            },
                            mentionedPeople: [
                              {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                              },
                            ],
                            components: [
                              "Backend",
                              "Networking",
                            ],
                            status: "[\"Done\"]",
                            pins: [
                              {
                                audienceFilters: [
                                  {
                                    fieldName: "type",
                                    values: [
                                      {
                                        value: "Spreadsheet",
                                        relationType: "EQUALS",
                                      },
                                      {
                                        value: "Presentation",
                                        relationType: "EQUALS",
                                      },
                                    ],
                                  },
                                ],
                                documentId: "<id>",
                                attribution: {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                  metadata: {
                                    type: "FULL_TIME",
                                    title: "Actor",
                                    department: "Movies",
                                    email: "george@example.com",
                                    location: "Hollywood, CA",
                                    phone: "6505551234",
                                    photoUrl: "https://example.com/george.jpg",
                                    startDate: new RFCDate("2000-01-23"),
                                    datasourceProfile: [
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                    ],
                                    querySuggestions: {
                                      suggestions: [
                                        {
                                          query: "app:github type:pull author:mortimer",
                                          label: "Mortimer's PRs",
                                          datasource: "github",
                                        },
                                      ],
                                    },
                                    inviteInfo: {
                                      invites: [
                                        {},
                                        {},
                                        {},
                                      ],
                                    },
                                    badges: [
                                      {
                                        key: "deployment_name_new_hire",
                                        displayName: "New hire",
                                        iconConfig: {
                                          color: "#343CED",
                                          key: "person_icon",
                                          iconType: "GLYPH",
                                          name: "user",
                                        },
                                      },
                                    ],
                                  },
                                },
                                updatedBy: {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                  metadata: {
                                    type: "FULL_TIME",
                                    title: "Actor",
                                    department: "Movies",
                                    email: "george@example.com",
                                    location: "Hollywood, CA",
                                    phone: "6505551234",
                                    photoUrl: "https://example.com/george.jpg",
                                    startDate: new RFCDate("2000-01-23"),
                                    datasourceProfile: [
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                    ],
                                    querySuggestions: {
                                      suggestions: [
                                        {
                                          query: "app:github type:pull author:mortimer",
                                          label: "Mortimer's PRs",
                                          datasource: "github",
                                        },
                                      ],
                                    },
                                    inviteInfo: {
                                      invites: [
                                        {},
                                        {},
                                        {},
                                      ],
                                    },
                                    badges: [
                                      {
                                        key: "deployment_name_new_hire",
                                        displayName: "New hire",
                                        iconConfig: {
                                          color: "#343CED",
                                          key: "person_icon",
                                          iconType: "GLYPH",
                                          name: "user",
                                        },
                                      },
                                    ],
                                  },
                                },
                              },
                              {
                                audienceFilters: [
                                  {
                                    fieldName: "type",
                                    values: [
                                      {
                                        value: "Spreadsheet",
                                        relationType: "EQUALS",
                                      },
                                      {
                                        value: "Presentation",
                                        relationType: "EQUALS",
                                      },
                                    ],
                                  },
                                ],
                                documentId: "<id>",
                                attribution: {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                  metadata: {
                                    type: "FULL_TIME",
                                    title: "Actor",
                                    department: "Movies",
                                    email: "george@example.com",
                                    location: "Hollywood, CA",
                                    phone: "6505551234",
                                    photoUrl: "https://example.com/george.jpg",
                                    startDate: new RFCDate("2000-01-23"),
                                    datasourceProfile: [
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                    ],
                                    querySuggestions: {
                                      suggestions: [
                                        {
                                          query: "app:github type:pull author:mortimer",
                                          label: "Mortimer's PRs",
                                          datasource: "github",
                                        },
                                      ],
                                    },
                                    inviteInfo: {
                                      invites: [
                                        {},
                                        {},
                                        {},
                                      ],
                                    },
                                    badges: [
                                      {
                                        key: "deployment_name_new_hire",
                                        displayName: "New hire",
                                        iconConfig: {
                                          color: "#343CED",
                                          key: "person_icon",
                                          iconType: "GLYPH",
                                          name: "user",
                                        },
                                      },
                                    ],
                                  },
                                },
                                updatedBy: {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                  metadata: {
                                    type: "FULL_TIME",
                                    title: "Actor",
                                    department: "Movies",
                                    email: "george@example.com",
                                    location: "Hollywood, CA",
                                    phone: "6505551234",
                                    photoUrl: "https://example.com/george.jpg",
                                    startDate: new RFCDate("2000-01-23"),
                                    datasourceProfile: [
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                    ],
                                    querySuggestions: {
                                      suggestions: [
                                        {
                                          query: "app:github type:pull author:mortimer",
                                          label: "Mortimer's PRs",
                                          datasource: "github",
                                        },
                                      ],
                                    },
                                    inviteInfo: {
                                      invites: [
                                        {},
                                        {},
                                        {},
                                      ],
                                    },
                                    badges: [
                                      {
                                        key: "deployment_name_new_hire",
                                        displayName: "New hire",
                                        iconConfig: {
                                          color: "#343CED",
                                          key: "person_icon",
                                          iconType: "GLYPH",
                                          name: "user",
                                        },
                                      },
                                    ],
                                  },
                                },
                              },
                            ],
                            assignedTo: {
                              name: "George Clooney",
                              obfuscatedId: "abc123",
                              metadata: {
                                type: "FULL_TIME",
                                title: "Actor",
                                department: "Movies",
                                email: "george@example.com",
                                location: "Hollywood, CA",
                                phone: "6505551234",
                                photoUrl: "https://example.com/george.jpg",
                                startDate: new RFCDate("2000-01-23"),
                                datasourceProfile: [
                                  {
                                    datasource: "github",
                                    handle: "<value>",
                                  },
                                  {
                                    datasource: "github",
                                    handle: "<value>",
                                  },
                                  {
                                    datasource: "github",
                                    handle: "<value>",
                                  },
                                ],
                                querySuggestions: {
                                  suggestions: [
                                    {
                                      query: "app:github type:pull author:mortimer",
                                      label: "Mortimer's PRs",
                                      datasource: "github",
                                    },
                                  ],
                                },
                                inviteInfo: {
                                  invites: [
                                    {},
                                    {},
                                    {},
                                  ],
                                },
                                badges: [
                                  {
                                    key: "deployment_name_new_hire",
                                    displayName: "New hire",
                                    iconConfig: {
                                      color: "#343CED",
                                      key: "person_icon",
                                      iconType: "GLYPH",
                                      name: "user",
                                    },
                                  },
                                ],
                              },
                            },
                            updatedBy: {
                              name: "George Clooney",
                              obfuscatedId: "abc123",
                              metadata: {
                                type: "FULL_TIME",
                                title: "Actor",
                                department: "Movies",
                                email: "george@example.com",
                                location: "Hollywood, CA",
                                phone: "6505551234",
                                photoUrl: "https://example.com/george.jpg",
                                startDate: new RFCDate("2000-01-23"),
                                datasourceProfile: [
                                  {
                                    datasource: "github",
                                    handle: "<value>",
                                  },
                                  {
                                    datasource: "github",
                                    handle: "<value>",
                                  },
                                  {
                                    datasource: "github",
                                    handle: "<value>",
                                  },
                                ],
                                querySuggestions: {
                                  suggestions: [
                                    {
                                      query: "app:github type:pull author:mortimer",
                                      label: "Mortimer's PRs",
                                      datasource: "github",
                                    },
                                  ],
                                },
                                inviteInfo: {
                                  invites: [
                                    {},
                                    {},
                                    {},
                                  ],
                                },
                                badges: [
                                  {
                                    key: "deployment_name_new_hire",
                                    displayName: "New hire",
                                    iconConfig: {
                                      color: "#343CED",
                                      key: "person_icon",
                                      iconType: "GLYPH",
                                      name: "user",
                                    },
                                  },
                                ],
                              },
                            },
                            collections: [
                              {
                                name: "<value>",
                                description: "perfectly flustered dimly",
                                addedRoles: [
                                  {
                                    person: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    role: "ANSWER_MODERATOR",
                                  },
                                  {
                                    person: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    role: "ANSWER_MODERATOR",
                                  },
                                  {
                                    person: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    role: "ANSWER_MODERATOR",
                                  },
                                ],
                                removedRoles: [
                                  {
                                    person: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    role: "VERIFIER",
                                  },
                                ],
                                audienceFilters: [
                                  {
                                    fieldName: "type",
                                    values: [
                                      {
                                        value: "Spreadsheet",
                                        relationType: "EQUALS",
                                      },
                                      {
                                        value: "Presentation",
                                        relationType: "EQUALS",
                                      },
                                    ],
                                  },
                                ],
                                id: 83242,
                                creator: {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                  metadata: {
                                    type: "FULL_TIME",
                                    title: "Actor",
                                    department: "Movies",
                                    email: "george@example.com",
                                    location: "Hollywood, CA",
                                    phone: "6505551234",
                                    photoUrl: "https://example.com/george.jpg",
                                    startDate: new RFCDate("2000-01-23"),
                                    datasourceProfile: [
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                    ],
                                    querySuggestions: {
                                      suggestions: [
                                        {
                                          query: "app:github type:pull author:mortimer",
                                          label: "Mortimer's PRs",
                                          datasource: "github",
                                        },
                                      ],
                                    },
                                    inviteInfo: {
                                      invites: [
                                        {},
                                        {},
                                        {},
                                      ],
                                    },
                                    badges: [
                                      {
                                        key: "deployment_name_new_hire",
                                        displayName: "New hire",
                                        iconConfig: {
                                          color: "#343CED",
                                          key: "person_icon",
                                          iconType: "GLYPH",
                                          name: "user",
                                        },
                                      },
                                    ],
                                  },
                                },
                                updatedBy: {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                  metadata: {
                                    type: "FULL_TIME",
                                    title: "Actor",
                                    department: "Movies",
                                    email: "george@example.com",
                                    location: "Hollywood, CA",
                                    phone: "6505551234",
                                    photoUrl: "https://example.com/george.jpg",
                                    startDate: new RFCDate("2000-01-23"),
                                    datasourceProfile: [
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                    ],
                                    querySuggestions: {
                                      suggestions: [
                                        {
                                          query: "app:github type:pull author:mortimer",
                                          label: "Mortimer's PRs",
                                          datasource: "github",
                                        },
                                      ],
                                    },
                                    inviteInfo: {
                                      invites: [
                                        {},
                                        {},
                                        {},
                                      ],
                                    },
                                    badges: [
                                      {
                                        key: "deployment_name_new_hire",
                                        displayName: "New hire",
                                        iconConfig: {
                                          color: "#343CED",
                                          key: "person_icon",
                                          iconType: "GLYPH",
                                          name: "user",
                                        },
                                      },
                                    ],
                                  },
                                },
                                items: [
                                  {
                                    collectionId: 420359,
                                    createdBy: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    shortcut: {
                                      inputAlias: "<value>",
                                      createdBy: {
                                        name: "George Clooney",
                                        obfuscatedId: "abc123",
                                        metadata: {
                                          type: "FULL_TIME",
                                          title: "Actor",
                                          department: "Movies",
                                          email: "george@example.com",
                                          location: "Hollywood, CA",
                                          phone: "6505551234",
                                          photoUrl: "https://example.com/george.jpg",
                                          startDate: new RFCDate("2000-01-23"),
                                          datasourceProfile: [
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                          ],
                                          querySuggestions: {
                                            suggestions: [
                                              {
                                                query: "app:github type:pull author:mortimer",
                                                label: "Mortimer's PRs",
                                                datasource: "github",
                                              },
                                            ],
                                          },
                                          inviteInfo: {
                                            invites: [
                                              {},
                                              {},
                                              {},
                                            ],
                                          },
                                          badges: [
                                            {
                                              key: "deployment_name_new_hire",
                                              displayName: "New hire",
                                              iconConfig: {
                                                color: "#343CED",
                                                key: "person_icon",
                                                iconType: "GLYPH",
                                                name: "user",
                                              },
                                            },
                                          ],
                                        },
                                      },
                                      updatedBy: {
                                        name: "George Clooney",
                                        obfuscatedId: "abc123",
                                        metadata: {
                                          type: "FULL_TIME",
                                          title: "Actor",
                                          department: "Movies",
                                          email: "george@example.com",
                                          location: "Hollywood, CA",
                                          phone: "6505551234",
                                          photoUrl: "https://example.com/george.jpg",
                                          startDate: new RFCDate("2000-01-23"),
                                          datasourceProfile: [
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                          ],
                                          querySuggestions: {
                                            suggestions: [
                                              {
                                                query: "app:github type:pull author:mortimer",
                                                label: "Mortimer's PRs",
                                                datasource: "github",
                                              },
                                            ],
                                          },
                                          inviteInfo: {
                                            invites: [
                                              {},
                                              {},
                                              {},
                                            ],
                                          },
                                          badges: [
                                            {
                                              key: "deployment_name_new_hire",
                                              displayName: "New hire",
                                              iconConfig: {
                                                color: "#343CED",
                                                key: "person_icon",
                                                iconType: "GLYPH",
                                                name: "user",
                                              },
                                            },
                                          ],
                                        },
                                      },
                                      roles: [
                                        {
                                          person: {
                                            name: "George Clooney",
                                            obfuscatedId: "abc123",
                                            metadata: {
                                              type: "FULL_TIME",
                                              title: "Actor",
                                              department: "Movies",
                                              email: "george@example.com",
                                              location: "Hollywood, CA",
                                              phone: "6505551234",
                                              photoUrl: "https://example.com/george.jpg",
                                              startDate: new RFCDate("2000-01-23"),
                                              datasourceProfile: [
                                                {
                                                  datasource: "github",
                                                  handle: "<value>",
                                                },
                                                {
                                                  datasource: "github",
                                                  handle: "<value>",
                                                },
                                              ],
                                              querySuggestions: {
                                                suggestions: [
                                                  {
                                                    query: "app:github type:pull author:mortimer",
                                                    label: "Mortimer's PRs",
                                                    datasource: "github",
                                                  },
                                                ],
                                              },
                                              inviteInfo: {
                                                invites: [
                                                  {},
                                                  {},
                                                  {},
                                                ],
                                              },
                                              badges: [
                                                {
                                                  key: "deployment_name_new_hire",
                                                  displayName: "New hire",
                                                  iconConfig: {
                                                    color: "#343CED",
                                                    key: "person_icon",
                                                    iconType: "GLYPH",
                                                    name: "user",
                                                  },
                                                },
                                              ],
                                            },
                                          },
                                          role: "ANSWER_MODERATOR",
                                        },
                                        {
                                          person: {
                                            name: "George Clooney",
                                            obfuscatedId: "abc123",
                                            metadata: {
                                              type: "FULL_TIME",
                                              title: "Actor",
                                              department: "Movies",
                                              email: "george@example.com",
                                              location: "Hollywood, CA",
                                              phone: "6505551234",
                                              photoUrl: "https://example.com/george.jpg",
                                              startDate: new RFCDate("2000-01-23"),
                                              datasourceProfile: [
                                                {
                                                  datasource: "github",
                                                  handle: "<value>",
                                                },
                                                {
                                                  datasource: "github",
                                                  handle: "<value>",
                                                },
                                              ],
                                              querySuggestions: {
                                                suggestions: [
                                                  {
                                                    query: "app:github type:pull author:mortimer",
                                                    label: "Mortimer's PRs",
                                                    datasource: "github",
                                                  },
                                                ],
                                              },
                                              inviteInfo: {
                                                invites: [
                                                  {},
                                                  {},
                                                  {},
                                                ],
                                              },
                                              badges: [
                                                {
                                                  key: "deployment_name_new_hire",
                                                  displayName: "New hire",
                                                  iconConfig: {
                                                    color: "#343CED",
                                                    key: "person_icon",
                                                    iconType: "GLYPH",
                                                    name: "user",
                                                  },
                                                },
                                              ],
                                            },
                                          },
                                          role: "ANSWER_MODERATOR",
                                        },
                                      ],
                                    },
                                    itemType: "COLLECTION",
                                  },
                                  {
                                    collectionId: 420359,
                                    createdBy: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    shortcut: {
                                      inputAlias: "<value>",
                                      createdBy: {
                                        name: "George Clooney",
                                        obfuscatedId: "abc123",
                                        metadata: {
                                          type: "FULL_TIME",
                                          title: "Actor",
                                          department: "Movies",
                                          email: "george@example.com",
                                          location: "Hollywood, CA",
                                          phone: "6505551234",
                                          photoUrl: "https://example.com/george.jpg",
                                          startDate: new RFCDate("2000-01-23"),
                                          datasourceProfile: [
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                          ],
                                          querySuggestions: {
                                            suggestions: [
                                              {
                                                query: "app:github type:pull author:mortimer",
                                                label: "Mortimer's PRs",
                                                datasource: "github",
                                              },
                                            ],
                                          },
                                          inviteInfo: {
                                            invites: [
                                              {},
                                              {},
                                              {},
                                            ],
                                          },
                                          badges: [
                                            {
                                              key: "deployment_name_new_hire",
                                              displayName: "New hire",
                                              iconConfig: {
                                                color: "#343CED",
                                                key: "person_icon",
                                                iconType: "GLYPH",
                                                name: "user",
                                              },
                                            },
                                          ],
                                        },
                                      },
                                      updatedBy: {
                                        name: "George Clooney",
                                        obfuscatedId: "abc123",
                                        metadata: {
                                          type: "FULL_TIME",
                                          title: "Actor",
                                          department: "Movies",
                                          email: "george@example.com",
                                          location: "Hollywood, CA",
                                          phone: "6505551234",
                                          photoUrl: "https://example.com/george.jpg",
                                          startDate: new RFCDate("2000-01-23"),
                                          datasourceProfile: [
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                          ],
                                          querySuggestions: {
                                            suggestions: [
                                              {
                                                query: "app:github type:pull author:mortimer",
                                                label: "Mortimer's PRs",
                                                datasource: "github",
                                              },
                                            ],
                                          },
                                          inviteInfo: {
                                            invites: [
                                              {},
                                              {},
                                              {},
                                            ],
                                          },
                                          badges: [
                                            {
                                              key: "deployment_name_new_hire",
                                              displayName: "New hire",
                                              iconConfig: {
                                                color: "#343CED",
                                                key: "person_icon",
                                                iconType: "GLYPH",
                                                name: "user",
                                              },
                                            },
                                          ],
                                        },
                                      },
                                      roles: [
                                        {
                                          person: {
                                            name: "George Clooney",
                                            obfuscatedId: "abc123",
                                            metadata: {
                                              type: "FULL_TIME",
                                              title: "Actor",
                                              department: "Movies",
                                              email: "george@example.com",
                                              location: "Hollywood, CA",
                                              phone: "6505551234",
                                              photoUrl: "https://example.com/george.jpg",
                                              startDate: new RFCDate("2000-01-23"),
                                              datasourceProfile: [
                                                {
                                                  datasource: "github",
                                                  handle: "<value>",
                                                },
                                                {
                                                  datasource: "github",
                                                  handle: "<value>",
                                                },
                                              ],
                                              querySuggestions: {
                                                suggestions: [
                                                  {
                                                    query: "app:github type:pull author:mortimer",
                                                    label: "Mortimer's PRs",
                                                    datasource: "github",
                                                  },
                                                ],
                                              },
                                              inviteInfo: {
                                                invites: [
                                                  {},
                                                  {},
                                                  {},
                                                ],
                                              },
                                              badges: [
                                                {
                                                  key: "deployment_name_new_hire",
                                                  displayName: "New hire",
                                                  iconConfig: {
                                                    color: "#343CED",
                                                    key: "person_icon",
                                                    iconType: "GLYPH",
                                                    name: "user",
                                                  },
                                                },
                                              ],
                                            },
                                          },
                                          role: "ANSWER_MODERATOR",
                                        },
                                        {
                                          person: {
                                            name: "George Clooney",
                                            obfuscatedId: "abc123",
                                            metadata: {
                                              type: "FULL_TIME",
                                              title: "Actor",
                                              department: "Movies",
                                              email: "george@example.com",
                                              location: "Hollywood, CA",
                                              phone: "6505551234",
                                              photoUrl: "https://example.com/george.jpg",
                                              startDate: new RFCDate("2000-01-23"),
                                              datasourceProfile: [
                                                {
                                                  datasource: "github",
                                                  handle: "<value>",
                                                },
                                                {
                                                  datasource: "github",
                                                  handle: "<value>",
                                                },
                                              ],
                                              querySuggestions: {
                                                suggestions: [
                                                  {
                                                    query: "app:github type:pull author:mortimer",
                                                    label: "Mortimer's PRs",
                                                    datasource: "github",
                                                  },
                                                ],
                                              },
                                              inviteInfo: {
                                                invites: [
                                                  {},
                                                  {},
                                                  {},
                                                ],
                                              },
                                              badges: [
                                                {
                                                  key: "deployment_name_new_hire",
                                                  displayName: "New hire",
                                                  iconConfig: {
                                                    color: "#343CED",
                                                    key: "person_icon",
                                                    iconType: "GLYPH",
                                                    name: "user",
                                                  },
                                                },
                                              ],
                                            },
                                          },
                                          role: "ANSWER_MODERATOR",
                                        },
                                      ],
                                    },
                                    itemType: "COLLECTION",
                                  },
                                ],
                              },
                            ],
                            interactions: {
                              reacts: [
                                {
                                  reactors: [
                                    {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                    },
                                  ],
                                },
                                {
                                  reactors: [
                                    {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                    },
                                  ],
                                },
                              ],
                              shares: [
                                {
                                  numDaysAgo: 582012,
                                  sharer: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      querySuggestions: {
                                        suggestions: [
                                          {
                                            query: "app:github type:pull author:mortimer",
                                            label: "Mortimer's PRs",
                                            datasource: "github",
                                          },
                                        ],
                                      },
                                      inviteInfo: {
                                        invites: [
                                          {},
                                          {},
                                          {},
                                        ],
                                      },
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                },
                              ],
                            },
                            verification: {
                              state: "DEPRECATED",
                              metadata: {
                                lastVerifier: {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                  metadata: {
                                    type: "FULL_TIME",
                                    title: "Actor",
                                    department: "Movies",
                                    email: "george@example.com",
                                    location: "Hollywood, CA",
                                    phone: "6505551234",
                                    photoUrl: "https://example.com/george.jpg",
                                    startDate: new RFCDate("2000-01-23"),
                                    datasourceProfile: [
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                    ],
                                    querySuggestions: {
                                      suggestions: [
                                        {
                                          query: "app:github type:pull author:mortimer",
                                          label: "Mortimer's PRs",
                                          datasource: "github",
                                        },
                                      ],
                                    },
                                    inviteInfo: {
                                      invites: [
                                        {},
                                        {},
                                        {},
                                      ],
                                    },
                                    badges: [
                                      {
                                        key: "deployment_name_new_hire",
                                        displayName: "New hire",
                                        iconConfig: {
                                          color: "#343CED",
                                          key: "person_icon",
                                          iconType: "GLYPH",
                                          name: "user",
                                        },
                                      },
                                    ],
                                  },
                                },
                                reminders: [
                                  {
                                    assignee: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    requestor: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    remindAt: 785622,
                                  },
                                  {
                                    assignee: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    requestor: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    remindAt: 785622,
                                  },
                                  {
                                    assignee: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    requestor: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    remindAt: 785622,
                                  },
                                ],
                                lastReminder: {
                                  assignee: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      querySuggestions: {
                                        suggestions: [
                                          {
                                            query: "app:github type:pull author:mortimer",
                                            label: "Mortimer's PRs",
                                            datasource: "github",
                                          },
                                        ],
                                      },
                                      inviteInfo: {
                                        invites: [
                                          {},
                                          {},
                                          {},
                                        ],
                                      },
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  requestor: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      querySuggestions: {
                                        suggestions: [
                                          {
                                            query: "app:github type:pull author:mortimer",
                                            label: "Mortimer's PRs",
                                            datasource: "github",
                                          },
                                        ],
                                      },
                                      inviteInfo: {
                                        invites: [
                                          {},
                                          {},
                                          {},
                                        ],
                                      },
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  remindAt: 269943,
                                },
                                candidateVerifiers: [
                                  {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                  },
                                ],
                              },
                            },
                            shortcuts: [
                              {
                                inputAlias: "<value>",
                                createdBy: {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                  metadata: {
                                    type: "FULL_TIME",
                                    title: "Actor",
                                    department: "Movies",
                                    email: "george@example.com",
                                    location: "Hollywood, CA",
                                    phone: "6505551234",
                                    photoUrl: "https://example.com/george.jpg",
                                    startDate: new RFCDate("2000-01-23"),
                                    datasourceProfile: [
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                    ],
                                    querySuggestions: {
                                      suggestions: [
                                        {
                                          query: "app:github type:pull author:mortimer",
                                          label: "Mortimer's PRs",
                                          datasource: "github",
                                        },
                                      ],
                                    },
                                    inviteInfo: {
                                      invites: [
                                        {},
                                        {},
                                        {},
                                      ],
                                    },
                                    badges: [
                                      {
                                        key: "deployment_name_new_hire",
                                        displayName: "New hire",
                                        iconConfig: {
                                          color: "#343CED",
                                          key: "person_icon",
                                          iconType: "GLYPH",
                                          name: "user",
                                        },
                                      },
                                    ],
                                  },
                                },
                                updatedBy: {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                  metadata: {
                                    type: "FULL_TIME",
                                    title: "Actor",
                                    department: "Movies",
                                    email: "george@example.com",
                                    location: "Hollywood, CA",
                                    phone: "6505551234",
                                    photoUrl: "https://example.com/george.jpg",
                                    startDate: new RFCDate("2000-01-23"),
                                    datasourceProfile: [
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                    ],
                                    querySuggestions: {
                                      suggestions: [
                                        {
                                          query: "app:github type:pull author:mortimer",
                                          label: "Mortimer's PRs",
                                          datasource: "github",
                                        },
                                      ],
                                    },
                                    inviteInfo: {
                                      invites: [
                                        {},
                                        {},
                                        {},
                                      ],
                                    },
                                    badges: [
                                      {
                                        key: "deployment_name_new_hire",
                                        displayName: "New hire",
                                        iconConfig: {
                                          color: "#343CED",
                                          key: "person_icon",
                                          iconType: "GLYPH",
                                          name: "user",
                                        },
                                      },
                                    ],
                                  },
                                },
                              },
                            ],
                            customData: {
                              "someCustomField": {},
                            },
                            contactPerson: {
                              name: "George Clooney",
                              obfuscatedId: "abc123",
                              metadata: {
                                type: "FULL_TIME",
                                title: "Actor",
                                department: "Movies",
                                email: "george@example.com",
                                location: "Hollywood, CA",
                                phone: "6505551234",
                                photoUrl: "https://example.com/george.jpg",
                                startDate: new RFCDate("2000-01-23"),
                                datasourceProfile: [
                                  {
                                    datasource: "github",
                                    handle: "<value>",
                                  },
                                  {
                                    datasource: "github",
                                    handle: "<value>",
                                  },
                                ],
                                querySuggestions: {
                                  suggestions: [
                                    {
                                      query: "app:github type:pull author:mortimer",
                                      label: "Mortimer's PRs",
                                      datasource: "github",
                                    },
                                  ],
                                },
                                inviteInfo: {
                                  invites: [
                                    {},
                                    {},
                                    {},
                                  ],
                                },
                                badges: [
                                  {
                                    key: "deployment_name_new_hire",
                                    displayName: "New hire",
                                    iconConfig: {
                                      color: "#343CED",
                                      key: "person_icon",
                                      iconType: "GLYPH",
                                      name: "user",
                                    },
                                  },
                                ],
                              },
                            },
                          },
                        },
                        person: {
                          name: "George Clooney",
                          obfuscatedId: "abc123",
                          metadata: {
                            type: "FULL_TIME",
                            title: "Actor",
                            department: "Movies",
                            email: "george@example.com",
                            location: "Hollywood, CA",
                            phone: "6505551234",
                            photoUrl: "https://example.com/george.jpg",
                            startDate: new RFCDate("2000-01-23"),
                            datasourceProfile: [
                              {
                                datasource: "github",
                                handle: "<value>",
                              },
                            ],
                            querySuggestions: {
                              suggestions: [
                                {
                                  query: "app:github type:pull author:mortimer",
                                  label: "Mortimer's PRs",
                                  datasource: "github",
                                },
                              ],
                            },
                            inviteInfo: {
                              invites: [
                                {},
                                {},
                                {},
                              ],
                            },
                            badges: [
                              {
                                key: "deployment_name_new_hire",
                                displayName: "New hire",
                                iconConfig: {
                                  color: "#343CED",
                                  key: "person_icon",
                                  iconType: "GLYPH",
                                  name: "user",
                                },
                              },
                            ],
                          },
                        },
                        customer: {
                          id: "<id>",
                          company: {
                            name: "<value>",
                            location: "New York City",
                            industry: "Finances",
                            about: "Financial, software, data, and media company headquartered in Midtown Manhattan, New York City",
                          },
                          poc: [
                            {
                              name: "George Clooney",
                              obfuscatedId: "abc123",
                            },
                          ],
                          notes: "CIO is interested in trying out the product.",
                        },
                        team: {
                          id: "<id>",
                          name: "<value>",
                          members: [
                            {
                              person: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  querySuggestions: {
                                    suggestions: [
                                      {
                                        query: "app:github type:pull author:mortimer",
                                        label: "Mortimer's PRs",
                                        datasource: "github",
                                      },
                                    ],
                                  },
                                  inviteInfo: {
                                    invites: [
                                      {},
                                      {},
                                      {},
                                    ],
                                  },
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                            },
                            {
                              person: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  querySuggestions: {
                                    suggestions: [
                                      {
                                        query: "app:github type:pull author:mortimer",
                                        label: "Mortimer's PRs",
                                        datasource: "github",
                                      },
                                    ],
                                  },
                                  inviteInfo: {
                                    invites: [
                                      {},
                                      {},
                                      {},
                                    ],
                                  },
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                            },
                            {
                              person: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  querySuggestions: {
                                    suggestions: [
                                      {
                                        query: "app:github type:pull author:mortimer",
                                        label: "Mortimer's PRs",
                                        datasource: "github",
                                      },
                                    ],
                                  },
                                  inviteInfo: {
                                    invites: [
                                      {},
                                      {},
                                      {},
                                    ],
                                  },
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                            },
                          ],
                          datasourceProfiles: [
                            {
                              datasource: "github",
                              handle: "<value>",
                            },
                          ],
                        },
                        answer: {
                          id: 3,
                          docId: "ANSWERS_answer_3",
                          question: "Why is the sky blue?",
                          bodyText: "From https://en.wikipedia.org/wiki/Diffuse_sky_radiation, the sky is blue because blue light is more strongly scattered than longer-wavelength light.",
                          audienceFilters: [
                            {
                              fieldName: "type",
                              values: [
                                {
                                  value: "Spreadsheet",
                                  relationType: "EQUALS",
                                },
                                {
                                  value: "Presentation",
                                  relationType: "EQUALS",
                                },
                              ],
                            },
                          ],
                          likes: {
                            likedBy: [
                              {
                                user: {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                  metadata: {
                                    type: "FULL_TIME",
                                    title: "Actor",
                                    department: "Movies",
                                    email: "george@example.com",
                                    location: "Hollywood, CA",
                                    phone: "6505551234",
                                    photoUrl: "https://example.com/george.jpg",
                                    startDate: new RFCDate("2000-01-23"),
                                    datasourceProfile: [
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                    ],
                                    querySuggestions: {
                                      suggestions: [
                                        {
                                          query: "app:github type:pull author:mortimer",
                                          label: "Mortimer's PRs",
                                          datasource: "github",
                                        },
                                      ],
                                    },
                                    inviteInfo: {
                                      invites: [
                                        {},
                                        {},
                                        {},
                                      ],
                                    },
                                    badges: [
                                      {
                                        key: "deployment_name_new_hire",
                                        displayName: "New hire",
                                        iconConfig: {
                                          color: "#343CED",
                                          key: "person_icon",
                                          iconType: "GLYPH",
                                          name: "user",
                                        },
                                      },
                                    ],
                                  },
                                },
                              },
                              {
                                user: {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                  metadata: {
                                    type: "FULL_TIME",
                                    title: "Actor",
                                    department: "Movies",
                                    email: "george@example.com",
                                    location: "Hollywood, CA",
                                    phone: "6505551234",
                                    photoUrl: "https://example.com/george.jpg",
                                    startDate: new RFCDate("2000-01-23"),
                                    datasourceProfile: [
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                    ],
                                    querySuggestions: {
                                      suggestions: [
                                        {
                                          query: "app:github type:pull author:mortimer",
                                          label: "Mortimer's PRs",
                                          datasource: "github",
                                        },
                                      ],
                                    },
                                    inviteInfo: {
                                      invites: [
                                        {},
                                        {},
                                        {},
                                      ],
                                    },
                                    badges: [
                                      {
                                        key: "deployment_name_new_hire",
                                        displayName: "New hire",
                                        iconConfig: {
                                          color: "#343CED",
                                          key: "person_icon",
                                          iconType: "GLYPH",
                                          name: "user",
                                        },
                                      },
                                    ],
                                  },
                                },
                              },
                            ],
                            likedByUser: false,
                            numLikes: 572532,
                          },
                          author: {
                            name: "George Clooney",
                            obfuscatedId: "abc123",
                            metadata: {
                              type: "FULL_TIME",
                              title: "Actor",
                              department: "Movies",
                              email: "george@example.com",
                              location: "Hollywood, CA",
                              phone: "6505551234",
                              photoUrl: "https://example.com/george.jpg",
                              startDate: new RFCDate("2000-01-23"),
                              datasourceProfile: [
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                              ],
                              querySuggestions: {
                                suggestions: [
                                  {
                                    query: "app:github type:pull author:mortimer",
                                    label: "Mortimer's PRs",
                                    datasource: "github",
                                  },
                                ],
                              },
                              inviteInfo: {
                                invites: [
                                  {},
                                  {},
                                  {},
                                ],
                              },
                              badges: [
                                {
                                  key: "deployment_name_new_hire",
                                  displayName: "New hire",
                                  iconConfig: {
                                    color: "#343CED",
                                    key: "person_icon",
                                    iconType: "GLYPH",
                                    name: "user",
                                  },
                                },
                              ],
                            },
                          },
                          updatedBy: {
                            name: "George Clooney",
                            obfuscatedId: "abc123",
                            metadata: {
                              type: "FULL_TIME",
                              title: "Actor",
                              department: "Movies",
                              email: "george@example.com",
                              location: "Hollywood, CA",
                              phone: "6505551234",
                              photoUrl: "https://example.com/george.jpg",
                              startDate: new RFCDate("2000-01-23"),
                              datasourceProfile: [
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                              ],
                              querySuggestions: {
                                suggestions: [
                                  {
                                    query: "app:github type:pull author:mortimer",
                                    label: "Mortimer's PRs",
                                    datasource: "github",
                                  },
                                ],
                              },
                              inviteInfo: {
                                invites: [
                                  {},
                                  {},
                                  {},
                                ],
                              },
                              badges: [
                                {
                                  key: "deployment_name_new_hire",
                                  displayName: "New hire",
                                  iconConfig: {
                                    color: "#343CED",
                                    key: "person_icon",
                                    iconType: "GLYPH",
                                    name: "user",
                                  },
                                },
                              ],
                            },
                          },
                          verification: {
                            state: "DEPRECATED",
                            metadata: {
                              lastVerifier: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  querySuggestions: {
                                    suggestions: [
                                      {
                                        query: "app:github type:pull author:mortimer",
                                        label: "Mortimer's PRs",
                                        datasource: "github",
                                      },
                                    ],
                                  },
                                  inviteInfo: {
                                    invites: [
                                      {},
                                      {},
                                      {},
                                    ],
                                  },
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                              document: {
                                metadata: {
                                  datasource: "datasource",
                                  objectType: "Feature Request",
                                  container: "container",
                                  parentId: "JIRA_EN-1337",
                                  mimeType: "mimeType",
                                  documentId: "documentId",
                                  createTime: new Date("2000-01-23T04:56:07.000Z"),
                                  updateTime: new Date("2000-01-23T04:56:07.000Z"),
                                  author: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  owner: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  components: [
                                    "Backend",
                                    "Networking",
                                  ],
                                  status: "[\"Done\"]",
                                  assignedTo: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  updatedBy: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  customData: {
                                    "someCustomField": {},
                                  },
                                  contactPerson: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                },
                              },
                              reminders: [
                                {
                                  assignee: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      querySuggestions: {
                                        suggestions: [
                                          {
                                            query: "app:github type:pull author:mortimer",
                                            label: "Mortimer's PRs",
                                            datasource: "github",
                                          },
                                        ],
                                      },
                                      inviteInfo: {
                                        invites: [
                                          {},
                                          {},
                                          {},
                                        ],
                                      },
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  requestor: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      querySuggestions: {
                                        suggestions: [
                                          {
                                            query: "app:github type:pull author:mortimer",
                                            label: "Mortimer's PRs",
                                            datasource: "github",
                                          },
                                        ],
                                      },
                                      inviteInfo: {
                                        invites: [
                                          {},
                                          {},
                                          {},
                                        ],
                                      },
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  remindAt: 785622,
                                },
                                {
                                  assignee: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      querySuggestions: {
                                        suggestions: [
                                          {
                                            query: "app:github type:pull author:mortimer",
                                            label: "Mortimer's PRs",
                                            datasource: "github",
                                          },
                                        ],
                                      },
                                      inviteInfo: {
                                        invites: [
                                          {},
                                          {},
                                          {},
                                        ],
                                      },
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  requestor: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      querySuggestions: {
                                        suggestions: [
                                          {
                                            query: "app:github type:pull author:mortimer",
                                            label: "Mortimer's PRs",
                                            datasource: "github",
                                          },
                                        ],
                                      },
                                      inviteInfo: {
                                        invites: [
                                          {},
                                          {},
                                          {},
                                        ],
                                      },
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  remindAt: 785622,
                                },
                                {
                                  assignee: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      querySuggestions: {
                                        suggestions: [
                                          {
                                            query: "app:github type:pull author:mortimer",
                                            label: "Mortimer's PRs",
                                            datasource: "github",
                                          },
                                        ],
                                      },
                                      inviteInfo: {
                                        invites: [
                                          {},
                                          {},
                                          {},
                                        ],
                                      },
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  requestor: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      querySuggestions: {
                                        suggestions: [
                                          {
                                            query: "app:github type:pull author:mortimer",
                                            label: "Mortimer's PRs",
                                            datasource: "github",
                                          },
                                        ],
                                      },
                                      inviteInfo: {
                                        invites: [
                                          {},
                                          {},
                                          {},
                                        ],
                                      },
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  remindAt: 785622,
                                },
                              ],
                              lastReminder: {
                                assignee: {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                  metadata: {
                                    type: "FULL_TIME",
                                    title: "Actor",
                                    department: "Movies",
                                    email: "george@example.com",
                                    location: "Hollywood, CA",
                                    phone: "6505551234",
                                    photoUrl: "https://example.com/george.jpg",
                                    startDate: new RFCDate("2000-01-23"),
                                    datasourceProfile: [
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                    ],
                                    querySuggestions: {
                                      suggestions: [
                                        {
                                          query: "app:github type:pull author:mortimer",
                                          label: "Mortimer's PRs",
                                          datasource: "github",
                                        },
                                      ],
                                    },
                                    inviteInfo: {
                                      invites: [
                                        {},
                                        {},
                                        {},
                                      ],
                                    },
                                    badges: [
                                      {
                                        key: "deployment_name_new_hire",
                                        displayName: "New hire",
                                        iconConfig: {
                                          color: "#343CED",
                                          key: "person_icon",
                                          iconType: "GLYPH",
                                          name: "user",
                                        },
                                      },
                                    ],
                                  },
                                },
                                requestor: {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                  metadata: {
                                    type: "FULL_TIME",
                                    title: "Actor",
                                    department: "Movies",
                                    email: "george@example.com",
                                    location: "Hollywood, CA",
                                    phone: "6505551234",
                                    photoUrl: "https://example.com/george.jpg",
                                    startDate: new RFCDate("2000-01-23"),
                                    datasourceProfile: [
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                    ],
                                    querySuggestions: {
                                      suggestions: [
                                        {
                                          query: "app:github type:pull author:mortimer",
                                          label: "Mortimer's PRs",
                                          datasource: "github",
                                        },
                                      ],
                                    },
                                    inviteInfo: {
                                      invites: [
                                        {},
                                        {},
                                        {},
                                      ],
                                    },
                                    badges: [
                                      {
                                        key: "deployment_name_new_hire",
                                        displayName: "New hire",
                                        iconConfig: {
                                          color: "#343CED",
                                          key: "person_icon",
                                          iconType: "GLYPH",
                                          name: "user",
                                        },
                                      },
                                    ],
                                  },
                                },
                                remindAt: 269943,
                              },
                              candidateVerifiers: [
                                {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                },
                              ],
                            },
                          },
                          sourceDocument: {
                            metadata: {
                              datasource: "datasource",
                              objectType: "Feature Request",
                              container: "container",
                              parentId: "JIRA_EN-1337",
                              mimeType: "mimeType",
                              documentId: "documentId",
                              createTime: new Date("2000-01-23T04:56:07.000Z"),
                              updateTime: new Date("2000-01-23T04:56:07.000Z"),
                              author: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  querySuggestions: {
                                    suggestions: [
                                      {
                                        query: "app:github type:pull author:mortimer",
                                        label: "Mortimer's PRs",
                                        datasource: "github",
                                      },
                                    ],
                                  },
                                  inviteInfo: {
                                    invites: [
                                      {},
                                      {},
                                      {},
                                    ],
                                  },
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                              owner: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  querySuggestions: {
                                    suggestions: [
                                      {
                                        query: "app:github type:pull author:mortimer",
                                        label: "Mortimer's PRs",
                                        datasource: "github",
                                      },
                                    ],
                                  },
                                  inviteInfo: {
                                    invites: [
                                      {},
                                      {},
                                      {},
                                    ],
                                  },
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                              components: [
                                "Backend",
                                "Networking",
                              ],
                              status: "[\"Done\"]",
                              assignedTo: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  querySuggestions: {
                                    suggestions: [
                                      {
                                        query: "app:github type:pull author:mortimer",
                                        label: "Mortimer's PRs",
                                        datasource: "github",
                                      },
                                    ],
                                  },
                                  inviteInfo: {
                                    invites: [
                                      {},
                                      {},
                                      {},
                                    ],
                                  },
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                              updatedBy: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  querySuggestions: {
                                    suggestions: [
                                      {
                                        query: "app:github type:pull author:mortimer",
                                        label: "Mortimer's PRs",
                                        datasource: "github",
                                      },
                                    ],
                                  },
                                  inviteInfo: {
                                    invites: [
                                      {},
                                      {},
                                      {},
                                    ],
                                  },
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                              interactions: {
                                reacts: [
                                  {
                                    reactors: [
                                      {
                                        name: "George Clooney",
                                        obfuscatedId: "abc123",
                                      },
                                    ],
                                  },
                                  {
                                    reactors: [
                                      {
                                        name: "George Clooney",
                                        obfuscatedId: "abc123",
                                      },
                                    ],
                                  },
                                ],
                                shares: [
                                  {
                                    numDaysAgo: 582012,
                                    sharer: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                  },
                                ],
                              },
                              verification: {
                                state: "DEPRECATED",
                                metadata: {
                                  lastVerifier: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      querySuggestions: {
                                        suggestions: [
                                          {
                                            query: "app:github type:pull author:mortimer",
                                            label: "Mortimer's PRs",
                                            datasource: "github",
                                          },
                                        ],
                                      },
                                      inviteInfo: {
                                        invites: [
                                          {},
                                          {},
                                          {},
                                        ],
                                      },
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  reminders: [
                                    {
                                      assignee: {
                                        name: "George Clooney",
                                        obfuscatedId: "abc123",
                                        metadata: {
                                          type: "FULL_TIME",
                                          title: "Actor",
                                          department: "Movies",
                                          email: "george@example.com",
                                          location: "Hollywood, CA",
                                          phone: "6505551234",
                                          photoUrl: "https://example.com/george.jpg",
                                          startDate: new RFCDate("2000-01-23"),
                                          datasourceProfile: [
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                          ],
                                          querySuggestions: {
                                            suggestions: [
                                              {
                                                query: "app:github type:pull author:mortimer",
                                                label: "Mortimer's PRs",
                                                datasource: "github",
                                              },
                                            ],
                                          },
                                          inviteInfo: {
                                            invites: [
                                              {},
                                              {},
                                              {},
                                            ],
                                          },
                                          badges: [
                                            {
                                              key: "deployment_name_new_hire",
                                              displayName: "New hire",
                                              iconConfig: {
                                                color: "#343CED",
                                                key: "person_icon",
                                                iconType: "GLYPH",
                                                name: "user",
                                              },
                                            },
                                          ],
                                        },
                                      },
                                      requestor: {
                                        name: "George Clooney",
                                        obfuscatedId: "abc123",
                                        metadata: {
                                          type: "FULL_TIME",
                                          title: "Actor",
                                          department: "Movies",
                                          email: "george@example.com",
                                          location: "Hollywood, CA",
                                          phone: "6505551234",
                                          photoUrl: "https://example.com/george.jpg",
                                          startDate: new RFCDate("2000-01-23"),
                                          datasourceProfile: [
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                          ],
                                          querySuggestions: {
                                            suggestions: [
                                              {
                                                query: "app:github type:pull author:mortimer",
                                                label: "Mortimer's PRs",
                                                datasource: "github",
                                              },
                                            ],
                                          },
                                          inviteInfo: {
                                            invites: [
                                              {},
                                              {},
                                              {},
                                            ],
                                          },
                                          badges: [
                                            {
                                              key: "deployment_name_new_hire",
                                              displayName: "New hire",
                                              iconConfig: {
                                                color: "#343CED",
                                                key: "person_icon",
                                                iconType: "GLYPH",
                                                name: "user",
                                              },
                                            },
                                          ],
                                        },
                                      },
                                      remindAt: 785622,
                                    },
                                    {
                                      assignee: {
                                        name: "George Clooney",
                                        obfuscatedId: "abc123",
                                        metadata: {
                                          type: "FULL_TIME",
                                          title: "Actor",
                                          department: "Movies",
                                          email: "george@example.com",
                                          location: "Hollywood, CA",
                                          phone: "6505551234",
                                          photoUrl: "https://example.com/george.jpg",
                                          startDate: new RFCDate("2000-01-23"),
                                          datasourceProfile: [
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                          ],
                                          querySuggestions: {
                                            suggestions: [
                                              {
                                                query: "app:github type:pull author:mortimer",
                                                label: "Mortimer's PRs",
                                                datasource: "github",
                                              },
                                            ],
                                          },
                                          inviteInfo: {
                                            invites: [
                                              {},
                                              {},
                                              {},
                                            ],
                                          },
                                          badges: [
                                            {
                                              key: "deployment_name_new_hire",
                                              displayName: "New hire",
                                              iconConfig: {
                                                color: "#343CED",
                                                key: "person_icon",
                                                iconType: "GLYPH",
                                                name: "user",
                                              },
                                            },
                                          ],
                                        },
                                      },
                                      requestor: {
                                        name: "George Clooney",
                                        obfuscatedId: "abc123",
                                        metadata: {
                                          type: "FULL_TIME",
                                          title: "Actor",
                                          department: "Movies",
                                          email: "george@example.com",
                                          location: "Hollywood, CA",
                                          phone: "6505551234",
                                          photoUrl: "https://example.com/george.jpg",
                                          startDate: new RFCDate("2000-01-23"),
                                          datasourceProfile: [
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                          ],
                                          querySuggestions: {
                                            suggestions: [
                                              {
                                                query: "app:github type:pull author:mortimer",
                                                label: "Mortimer's PRs",
                                                datasource: "github",
                                              },
                                            ],
                                          },
                                          inviteInfo: {
                                            invites: [
                                              {},
                                              {},
                                              {},
                                            ],
                                          },
                                          badges: [
                                            {
                                              key: "deployment_name_new_hire",
                                              displayName: "New hire",
                                              iconConfig: {
                                                color: "#343CED",
                                                key: "person_icon",
                                                iconType: "GLYPH",
                                                name: "user",
                                              },
                                            },
                                          ],
                                        },
                                      },
                                      remindAt: 785622,
                                    },
                                    {
                                      assignee: {
                                        name: "George Clooney",
                                        obfuscatedId: "abc123",
                                        metadata: {
                                          type: "FULL_TIME",
                                          title: "Actor",
                                          department: "Movies",
                                          email: "george@example.com",
                                          location: "Hollywood, CA",
                                          phone: "6505551234",
                                          photoUrl: "https://example.com/george.jpg",
                                          startDate: new RFCDate("2000-01-23"),
                                          datasourceProfile: [
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                          ],
                                          querySuggestions: {
                                            suggestions: [
                                              {
                                                query: "app:github type:pull author:mortimer",
                                                label: "Mortimer's PRs",
                                                datasource: "github",
                                              },
                                            ],
                                          },
                                          inviteInfo: {
                                            invites: [
                                              {},
                                              {},
                                              {},
                                            ],
                                          },
                                          badges: [
                                            {
                                              key: "deployment_name_new_hire",
                                              displayName: "New hire",
                                              iconConfig: {
                                                color: "#343CED",
                                                key: "person_icon",
                                                iconType: "GLYPH",
                                                name: "user",
                                              },
                                            },
                                          ],
                                        },
                                      },
                                      requestor: {
                                        name: "George Clooney",
                                        obfuscatedId: "abc123",
                                        metadata: {
                                          type: "FULL_TIME",
                                          title: "Actor",
                                          department: "Movies",
                                          email: "george@example.com",
                                          location: "Hollywood, CA",
                                          phone: "6505551234",
                                          photoUrl: "https://example.com/george.jpg",
                                          startDate: new RFCDate("2000-01-23"),
                                          datasourceProfile: [
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                          ],
                                          querySuggestions: {
                                            suggestions: [
                                              {
                                                query: "app:github type:pull author:mortimer",
                                                label: "Mortimer's PRs",
                                                datasource: "github",
                                              },
                                            ],
                                          },
                                          inviteInfo: {
                                            invites: [
                                              {},
                                              {},
                                              {},
                                            ],
                                          },
                                          badges: [
                                            {
                                              key: "deployment_name_new_hire",
                                              displayName: "New hire",
                                              iconConfig: {
                                                color: "#343CED",
                                                key: "person_icon",
                                                iconType: "GLYPH",
                                                name: "user",
                                              },
                                            },
                                          ],
                                        },
                                      },
                                      remindAt: 785622,
                                    },
                                  ],
                                  lastReminder: {
                                    assignee: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    requestor: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    remindAt: 269943,
                                  },
                                  candidateVerifiers: [
                                    {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                    },
                                  ],
                                },
                              },
                              customData: {
                                "someCustomField": {},
                              },
                              contactPerson: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  querySuggestions: {
                                    suggestions: [
                                      {
                                        query: "app:github type:pull author:mortimer",
                                        label: "Mortimer's PRs",
                                        datasource: "github",
                                      },
                                    ],
                                  },
                                  inviteInfo: {
                                    invites: [
                                      {},
                                      {},
                                      {},
                                    ],
                                  },
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                            },
                          },
                        },
                        extractedQnA: {
                          questionResult: {
                            document: {
                              metadata: {
                                datasource: "datasource",
                                objectType: "Feature Request",
                                container: "container",
                                parentId: "JIRA_EN-1337",
                                mimeType: "mimeType",
                                documentId: "documentId",
                                createTime: new Date("2000-01-23T04:56:07.000Z"),
                                updateTime: new Date("2000-01-23T04:56:07.000Z"),
                                author: {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                  relatedDocuments: [
                                    {
                                      querySuggestion: {
                                        query: "app:github type:pull author:mortimer",
                                        searchProviderInfo: {
                                          name: "Google",
                                          searchLinkUrlTemplate: "https://www.google.com/search?q={query}&hl=en",
                                        },
                                        label: "Mortimer's PRs",
                                        datasource: "github",
                                        requestOptions: {
                                          datasourceFilter: "JIRA",
                                          datasourcesFilter: [
                                            "JIRA",
                                          ],
                                          queryOverridesFacetFilters: true,
                                          facetFilters: [
                                            {
                                              fieldName: "type",
                                              values: [
                                                {
                                                  value: "Spreadsheet",
                                                  relationType: "EQUALS",
                                                },
                                                {
                                                  value: "Presentation",
                                                  relationType: "EQUALS",
                                                },
                                              ],
                                            },
                                          ],
                                          facetFilterSets: [
                                            {
                                              filters: [
                                                {
                                                  fieldName: "type",
                                                  values: [
                                                    {
                                                      value: "Spreadsheet",
                                                      relationType: "EQUALS",
                                                    },
                                                    {
                                                      value: "Presentation",
                                                      relationType: "EQUALS",
                                                    },
                                                  ],
                                                },
                                              ],
                                            },
                                            {
                                              filters: [
                                                {
                                                  fieldName: "type",
                                                  values: [
                                                    {
                                                      value: "Spreadsheet",
                                                      relationType: "EQUALS",
                                                    },
                                                    {
                                                      value: "Presentation",
                                                      relationType: "EQUALS",
                                                    },
                                                  ],
                                                },
                                              ],
                                            },
                                          ],
                                          facetBucketSize: 843281,
                                          authTokens: [
                                            {
                                              accessToken: "123abc",
                                              datasource: "gmail",
                                              scope: "email profile https://www.googleapis.com/auth/gmail.readonly",
                                              tokenType: "Bearer",
                                              authUser: "1",
                                            },
                                          ],
                                        },
                                        ranges: [
                                          {
                                            startIndex: 925801,
                                          },
                                          {
                                            startIndex: 925801,
                                          },
                                          {
                                            startIndex: 925801,
                                          },
                                        ],
                                        inputDetails: {
                                          hasCopyPaste: true,
                                        },
                                      },
                                    },
                                    {
                                      querySuggestion: {
                                        query: "app:github type:pull author:mortimer",
                                        searchProviderInfo: {
                                          name: "Google",
                                          searchLinkUrlTemplate: "https://www.google.com/search?q={query}&hl=en",
                                        },
                                        label: "Mortimer's PRs",
                                        datasource: "github",
                                        requestOptions: {
                                          datasourceFilter: "JIRA",
                                          datasourcesFilter: [
                                            "JIRA",
                                          ],
                                          queryOverridesFacetFilters: true,
                                          facetFilters: [
                                            {
                                              fieldName: "type",
                                              values: [
                                                {
                                                  value: "Spreadsheet",
                                                  relationType: "EQUALS",
                                                },
                                                {
                                                  value: "Presentation",
                                                  relationType: "EQUALS",
                                                },
                                              ],
                                            },
                                          ],
                                          facetFilterSets: [
                                            {
                                              filters: [
                                                {
                                                  fieldName: "type",
                                                  values: [
                                                    {
                                                      value: "Spreadsheet",
                                                      relationType: "EQUALS",
                                                    },
                                                    {
                                                      value: "Presentation",
                                                      relationType: "EQUALS",
                                                    },
                                                  ],
                                                },
                                              ],
                                            },
                                            {
                                              filters: [
                                                {
                                                  fieldName: "type",
                                                  values: [
                                                    {
                                                      value: "Spreadsheet",
                                                      relationType: "EQUALS",
                                                    },
                                                    {
                                                      value: "Presentation",
                                                      relationType: "EQUALS",
                                                    },
                                                  ],
                                                },
                                              ],
                                            },
                                          ],
                                          facetBucketSize: 843281,
                                          authTokens: [
                                            {
                                              accessToken: "123abc",
                                              datasource: "gmail",
                                              scope: "email profile https://www.googleapis.com/auth/gmail.readonly",
                                              tokenType: "Bearer",
                                              authUser: "1",
                                            },
                                          ],
                                        },
                                        ranges: [
                                          {
                                            startIndex: 925801,
                                          },
                                          {
                                            startIndex: 925801,
                                          },
                                          {
                                            startIndex: 925801,
                                          },
                                        ],
                                        inputDetails: {
                                          hasCopyPaste: true,
                                        },
                                      },
                                    },
                                    {
                                      querySuggestion: {
                                        query: "app:github type:pull author:mortimer",
                                        searchProviderInfo: {
                                          name: "Google",
                                          searchLinkUrlTemplate: "https://www.google.com/search?q={query}&hl=en",
                                        },
                                        label: "Mortimer's PRs",
                                        datasource: "github",
                                        requestOptions: {
                                          datasourceFilter: "JIRA",
                                          datasourcesFilter: [
                                            "JIRA",
                                          ],
                                          queryOverridesFacetFilters: true,
                                          facetFilters: [
                                            {
                                              fieldName: "type",
                                              values: [
                                                {
                                                  value: "Spreadsheet",
                                                  relationType: "EQUALS",
                                                },
                                                {
                                                  value: "Presentation",
                                                  relationType: "EQUALS",
                                                },
                                              ],
                                            },
                                          ],
                                          facetFilterSets: [
                                            {
                                              filters: [
                                                {
                                                  fieldName: "type",
                                                  values: [
                                                    {
                                                      value: "Spreadsheet",
                                                      relationType: "EQUALS",
                                                    },
                                                    {
                                                      value: "Presentation",
                                                      relationType: "EQUALS",
                                                    },
                                                  ],
                                                },
                                              ],
                                            },
                                            {
                                              filters: [
                                                {
                                                  fieldName: "type",
                                                  values: [
                                                    {
                                                      value: "Spreadsheet",
                                                      relationType: "EQUALS",
                                                    },
                                                    {
                                                      value: "Presentation",
                                                      relationType: "EQUALS",
                                                    },
                                                  ],
                                                },
                                              ],
                                            },
                                          ],
                                          facetBucketSize: 843281,
                                          authTokens: [
                                            {
                                              accessToken: "123abc",
                                              datasource: "gmail",
                                              scope: "email profile https://www.googleapis.com/auth/gmail.readonly",
                                              tokenType: "Bearer",
                                              authUser: "1",
                                            },
                                          ],
                                        },
                                        ranges: [
                                          {
                                            startIndex: 925801,
                                          },
                                          {
                                            startIndex: 925801,
                                          },
                                          {
                                            startIndex: 925801,
                                          },
                                        ],
                                        inputDetails: {
                                          hasCopyPaste: true,
                                        },
                                      },
                                    },
                                  ],
                                  metadata: {
                                    type: "FULL_TIME",
                                    title: "Actor",
                                    department: "Movies",
                                    email: "george@example.com",
                                    location: "Hollywood, CA",
                                    phone: "6505551234",
                                    photoUrl: "https://example.com/george.jpg",
                                    startDate: new RFCDate("2000-01-23"),
                                    datasourceProfile: [
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                    ],
                                    querySuggestions: {
                                      suggestions: [
                                        {
                                          query: "app:github type:pull author:mortimer",
                                          label: "Mortimer's PRs",
                                          datasource: "github",
                                        },
                                      ],
                                    },
                                    inviteInfo: {
                                      invites: [
                                        {},
                                        {},
                                        {},
                                      ],
                                    },
                                    customFields: [
                                      {
                                        label: "<value>",
                                        values: [
                                          {},
                                          {},
                                        ],
                                      },
                                      {
                                        label: "<value>",
                                        values: [
                                          {},
                                          {},
                                        ],
                                      },
                                      {
                                        label: "<value>",
                                        values: [
                                          {},
                                          {},
                                        ],
                                      },
                                    ],
                                    badges: [
                                      {
                                        key: "deployment_name_new_hire",
                                        displayName: "New hire",
                                        iconConfig: {
                                          color: "#343CED",
                                          key: "person_icon",
                                          iconType: "GLYPH",
                                          name: "user",
                                        },
                                      },
                                    ],
                                  },
                                },
                                owner: {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                  metadata: {
                                    type: "FULL_TIME",
                                    title: "Actor",
                                    department: "Movies",
                                    email: "george@example.com",
                                    location: "Hollywood, CA",
                                    phone: "6505551234",
                                    photoUrl: "https://example.com/george.jpg",
                                    startDate: new RFCDate("2000-01-23"),
                                    datasourceProfile: [
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                    ],
                                    querySuggestions: {
                                      suggestions: [
                                        {
                                          query: "app:github type:pull author:mortimer",
                                          label: "Mortimer's PRs",
                                          datasource: "github",
                                        },
                                      ],
                                    },
                                    inviteInfo: {
                                      invites: [
                                        {},
                                        {},
                                        {},
                                      ],
                                    },
                                    badges: [
                                      {
                                        key: "deployment_name_new_hire",
                                        displayName: "New hire",
                                        iconConfig: {
                                          color: "#343CED",
                                          key: "person_icon",
                                          iconType: "GLYPH",
                                          name: "user",
                                        },
                                      },
                                    ],
                                  },
                                },
                                mentionedPeople: [
                                  {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                  },
                                ],
                                components: [
                                  "Backend",
                                  "Networking",
                                ],
                                status: "[\"Done\"]",
                                pins: [
                                  {
                                    audienceFilters: [
                                      {
                                        fieldName: "type",
                                        values: [
                                          {
                                            value: "Spreadsheet",
                                            relationType: "EQUALS",
                                          },
                                          {
                                            value: "Presentation",
                                            relationType: "EQUALS",
                                          },
                                        ],
                                      },
                                    ],
                                    documentId: "<id>",
                                    attribution: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    updatedBy: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                  },
                                  {
                                    audienceFilters: [
                                      {
                                        fieldName: "type",
                                        values: [
                                          {
                                            value: "Spreadsheet",
                                            relationType: "EQUALS",
                                          },
                                          {
                                            value: "Presentation",
                                            relationType: "EQUALS",
                                          },
                                        ],
                                      },
                                    ],
                                    documentId: "<id>",
                                    attribution: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    updatedBy: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                  },
                                ],
                                assignedTo: {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                  metadata: {
                                    type: "FULL_TIME",
                                    title: "Actor",
                                    department: "Movies",
                                    email: "george@example.com",
                                    location: "Hollywood, CA",
                                    phone: "6505551234",
                                    photoUrl: "https://example.com/george.jpg",
                                    startDate: new RFCDate("2000-01-23"),
                                    datasourceProfile: [
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                    ],
                                    querySuggestions: {
                                      suggestions: [
                                        {
                                          query: "app:github type:pull author:mortimer",
                                          label: "Mortimer's PRs",
                                          datasource: "github",
                                        },
                                      ],
                                    },
                                    inviteInfo: {
                                      invites: [
                                        {},
                                        {},
                                        {},
                                      ],
                                    },
                                    badges: [
                                      {
                                        key: "deployment_name_new_hire",
                                        displayName: "New hire",
                                        iconConfig: {
                                          color: "#343CED",
                                          key: "person_icon",
                                          iconType: "GLYPH",
                                          name: "user",
                                        },
                                      },
                                    ],
                                  },
                                },
                                updatedBy: {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                  metadata: {
                                    type: "FULL_TIME",
                                    title: "Actor",
                                    department: "Movies",
                                    email: "george@example.com",
                                    location: "Hollywood, CA",
                                    phone: "6505551234",
                                    photoUrl: "https://example.com/george.jpg",
                                    startDate: new RFCDate("2000-01-23"),
                                    datasourceProfile: [
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                    ],
                                    querySuggestions: {
                                      suggestions: [
                                        {
                                          query: "app:github type:pull author:mortimer",
                                          label: "Mortimer's PRs",
                                          datasource: "github",
                                        },
                                      ],
                                    },
                                    inviteInfo: {
                                      invites: [
                                        {},
                                        {},
                                        {},
                                      ],
                                    },
                                    badges: [
                                      {
                                        key: "deployment_name_new_hire",
                                        displayName: "New hire",
                                        iconConfig: {
                                          color: "#343CED",
                                          key: "person_icon",
                                          iconType: "GLYPH",
                                          name: "user",
                                        },
                                      },
                                    ],
                                  },
                                },
                                collections: [
                                  {
                                    name: "<value>",
                                    description: "perfectly flustered dimly",
                                    addedRoles: [
                                      {
                                        person: {
                                          name: "George Clooney",
                                          obfuscatedId: "abc123",
                                          metadata: {
                                            type: "FULL_TIME",
                                            title: "Actor",
                                            department: "Movies",
                                            email: "george@example.com",
                                            location: "Hollywood, CA",
                                            phone: "6505551234",
                                            photoUrl: "https://example.com/george.jpg",
                                            startDate: new RFCDate("2000-01-23"),
                                            datasourceProfile: [
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                            ],
                                            querySuggestions: {
                                              suggestions: [
                                                {
                                                  query: "app:github type:pull author:mortimer",
                                                  label: "Mortimer's PRs",
                                                  datasource: "github",
                                                },
                                              ],
                                            },
                                            inviteInfo: {
                                              invites: [
                                                {},
                                                {},
                                                {},
                                              ],
                                            },
                                            badges: [
                                              {
                                                key: "deployment_name_new_hire",
                                                displayName: "New hire",
                                                iconConfig: {
                                                  color: "#343CED",
                                                  key: "person_icon",
                                                  iconType: "GLYPH",
                                                  name: "user",
                                                },
                                              },
                                            ],
                                          },
                                        },
                                        role: "ANSWER_MODERATOR",
                                      },
                                      {
                                        person: {
                                          name: "George Clooney",
                                          obfuscatedId: "abc123",
                                          metadata: {
                                            type: "FULL_TIME",
                                            title: "Actor",
                                            department: "Movies",
                                            email: "george@example.com",
                                            location: "Hollywood, CA",
                                            phone: "6505551234",
                                            photoUrl: "https://example.com/george.jpg",
                                            startDate: new RFCDate("2000-01-23"),
                                            datasourceProfile: [
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                            ],
                                            querySuggestions: {
                                              suggestions: [
                                                {
                                                  query: "app:github type:pull author:mortimer",
                                                  label: "Mortimer's PRs",
                                                  datasource: "github",
                                                },
                                              ],
                                            },
                                            inviteInfo: {
                                              invites: [
                                                {},
                                                {},
                                                {},
                                              ],
                                            },
                                            badges: [
                                              {
                                                key: "deployment_name_new_hire",
                                                displayName: "New hire",
                                                iconConfig: {
                                                  color: "#343CED",
                                                  key: "person_icon",
                                                  iconType: "GLYPH",
                                                  name: "user",
                                                },
                                              },
                                            ],
                                          },
                                        },
                                        role: "ANSWER_MODERATOR",
                                      },
                                      {
                                        person: {
                                          name: "George Clooney",
                                          obfuscatedId: "abc123",
                                          metadata: {
                                            type: "FULL_TIME",
                                            title: "Actor",
                                            department: "Movies",
                                            email: "george@example.com",
                                            location: "Hollywood, CA",
                                            phone: "6505551234",
                                            photoUrl: "https://example.com/george.jpg",
                                            startDate: new RFCDate("2000-01-23"),
                                            datasourceProfile: [
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                            ],
                                            querySuggestions: {
                                              suggestions: [
                                                {
                                                  query: "app:github type:pull author:mortimer",
                                                  label: "Mortimer's PRs",
                                                  datasource: "github",
                                                },
                                              ],
                                            },
                                            inviteInfo: {
                                              invites: [
                                                {},
                                                {},
                                                {},
                                              ],
                                            },
                                            badges: [
                                              {
                                                key: "deployment_name_new_hire",
                                                displayName: "New hire",
                                                iconConfig: {
                                                  color: "#343CED",
                                                  key: "person_icon",
                                                  iconType: "GLYPH",
                                                  name: "user",
                                                },
                                              },
                                            ],
                                          },
                                        },
                                        role: "ANSWER_MODERATOR",
                                      },
                                    ],
                                    removedRoles: [
                                      {
                                        person: {
                                          name: "George Clooney",
                                          obfuscatedId: "abc123",
                                          metadata: {
                                            type: "FULL_TIME",
                                            title: "Actor",
                                            department: "Movies",
                                            email: "george@example.com",
                                            location: "Hollywood, CA",
                                            phone: "6505551234",
                                            photoUrl: "https://example.com/george.jpg",
                                            startDate: new RFCDate("2000-01-23"),
                                            datasourceProfile: [
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                            ],
                                            querySuggestions: {
                                              suggestions: [
                                                {
                                                  query: "app:github type:pull author:mortimer",
                                                  label: "Mortimer's PRs",
                                                  datasource: "github",
                                                },
                                              ],
                                            },
                                            inviteInfo: {
                                              invites: [
                                                {},
                                                {},
                                                {},
                                              ],
                                            },
                                            badges: [
                                              {
                                                key: "deployment_name_new_hire",
                                                displayName: "New hire",
                                                iconConfig: {
                                                  color: "#343CED",
                                                  key: "person_icon",
                                                  iconType: "GLYPH",
                                                  name: "user",
                                                },
                                              },
                                            ],
                                          },
                                        },
                                        role: "VERIFIER",
                                      },
                                    ],
                                    audienceFilters: [
                                      {
                                        fieldName: "type",
                                        values: [
                                          {
                                            value: "Spreadsheet",
                                            relationType: "EQUALS",
                                          },
                                          {
                                            value: "Presentation",
                                            relationType: "EQUALS",
                                          },
                                        ],
                                      },
                                    ],
                                    id: 83242,
                                    creator: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    updatedBy: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    items: [
                                      {
                                        collectionId: 420359,
                                        createdBy: {
                                          name: "George Clooney",
                                          obfuscatedId: "abc123",
                                          metadata: {
                                            type: "FULL_TIME",
                                            title: "Actor",
                                            department: "Movies",
                                            email: "george@example.com",
                                            location: "Hollywood, CA",
                                            phone: "6505551234",
                                            photoUrl: "https://example.com/george.jpg",
                                            startDate: new RFCDate("2000-01-23"),
                                            datasourceProfile: [
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                            ],
                                            querySuggestions: {
                                              suggestions: [
                                                {
                                                  query: "app:github type:pull author:mortimer",
                                                  label: "Mortimer's PRs",
                                                  datasource: "github",
                                                },
                                              ],
                                            },
                                            inviteInfo: {
                                              invites: [
                                                {},
                                                {},
                                                {},
                                              ],
                                            },
                                            badges: [
                                              {
                                                key: "deployment_name_new_hire",
                                                displayName: "New hire",
                                                iconConfig: {
                                                  color: "#343CED",
                                                  key: "person_icon",
                                                  iconType: "GLYPH",
                                                  name: "user",
                                                },
                                              },
                                            ],
                                          },
                                        },
                                        shortcut: {
                                          inputAlias: "<value>",
                                          createdBy: {
                                            name: "George Clooney",
                                            obfuscatedId: "abc123",
                                            metadata: {
                                              type: "FULL_TIME",
                                              title: "Actor",
                                              department: "Movies",
                                              email: "george@example.com",
                                              location: "Hollywood, CA",
                                              phone: "6505551234",
                                              photoUrl: "https://example.com/george.jpg",
                                              startDate: new RFCDate("2000-01-23"),
                                              datasourceProfile: [
                                                {
                                                  datasource: "github",
                                                  handle: "<value>",
                                                },
                                                {
                                                  datasource: "github",
                                                  handle: "<value>",
                                                },
                                                {
                                                  datasource: "github",
                                                  handle: "<value>",
                                                },
                                              ],
                                              querySuggestions: {
                                                suggestions: [
                                                  {
                                                    query: "app:github type:pull author:mortimer",
                                                    label: "Mortimer's PRs",
                                                    datasource: "github",
                                                  },
                                                ],
                                              },
                                              inviteInfo: {
                                                invites: [
                                                  {},
                                                  {},
                                                  {},
                                                ],
                                              },
                                              badges: [
                                                {
                                                  key: "deployment_name_new_hire",
                                                  displayName: "New hire",
                                                  iconConfig: {
                                                    color: "#343CED",
                                                    key: "person_icon",
                                                    iconType: "GLYPH",
                                                    name: "user",
                                                  },
                                                },
                                              ],
                                            },
                                          },
                                          updatedBy: {
                                            name: "George Clooney",
                                            obfuscatedId: "abc123",
                                            metadata: {
                                              type: "FULL_TIME",
                                              title: "Actor",
                                              department: "Movies",
                                              email: "george@example.com",
                                              location: "Hollywood, CA",
                                              phone: "6505551234",
                                              photoUrl: "https://example.com/george.jpg",
                                              startDate: new RFCDate("2000-01-23"),
                                              datasourceProfile: [
                                                {
                                                  datasource: "github",
                                                  handle: "<value>",
                                                },
                                                {
                                                  datasource: "github",
                                                  handle: "<value>",
                                                },
                                              ],
                                              querySuggestions: {
                                                suggestions: [
                                                  {
                                                    query: "app:github type:pull author:mortimer",
                                                    label: "Mortimer's PRs",
                                                    datasource: "github",
                                                  },
                                                ],
                                              },
                                              inviteInfo: {
                                                invites: [
                                                  {},
                                                  {},
                                                  {},
                                                ],
                                              },
                                              badges: [
                                                {
                                                  key: "deployment_name_new_hire",
                                                  displayName: "New hire",
                                                  iconConfig: {
                                                    color: "#343CED",
                                                    key: "person_icon",
                                                    iconType: "GLYPH",
                                                    name: "user",
                                                  },
                                                },
                                              ],
                                            },
                                          },
                                          roles: [
                                            {
                                              person: {
                                                name: "George Clooney",
                                                obfuscatedId: "abc123",
                                                metadata: {
                                                  type: "FULL_TIME",
                                                  title: "Actor",
                                                  department: "Movies",
                                                  email: "george@example.com",
                                                  location: "Hollywood, CA",
                                                  phone: "6505551234",
                                                  photoUrl: "https://example.com/george.jpg",
                                                  startDate: new RFCDate("2000-01-23"),
                                                  datasourceProfile: [
                                                    {
                                                      datasource: "github",
                                                      handle: "<value>",
                                                    },
                                                    {
                                                      datasource: "github",
                                                      handle: "<value>",
                                                    },
                                                  ],
                                                  querySuggestions: {
                                                    suggestions: [
                                                      {
                                                        query: "app:github type:pull author:mortimer",
                                                        label: "Mortimer's PRs",
                                                        datasource: "github",
                                                      },
                                                    ],
                                                  },
                                                  inviteInfo: {
                                                    invites: [
                                                      {},
                                                      {},
                                                      {},
                                                    ],
                                                  },
                                                  badges: [
                                                    {
                                                      key: "deployment_name_new_hire",
                                                      displayName: "New hire",
                                                      iconConfig: {
                                                        color: "#343CED",
                                                        key: "person_icon",
                                                        iconType: "GLYPH",
                                                        name: "user",
                                                      },
                                                    },
                                                  ],
                                                },
                                              },
                                              role: "ANSWER_MODERATOR",
                                            },
                                            {
                                              person: {
                                                name: "George Clooney",
                                                obfuscatedId: "abc123",
                                                metadata: {
                                                  type: "FULL_TIME",
                                                  title: "Actor",
                                                  department: "Movies",
                                                  email: "george@example.com",
                                                  location: "Hollywood, CA",
                                                  phone: "6505551234",
                                                  photoUrl: "https://example.com/george.jpg",
                                                  startDate: new RFCDate("2000-01-23"),
                                                  datasourceProfile: [
                                                    {
                                                      datasource: "github",
                                                      handle: "<value>",
                                                    },
                                                    {
                                                      datasource: "github",
                                                      handle: "<value>",
                                                    },
                                                  ],
                                                  querySuggestions: {
                                                    suggestions: [
                                                      {
                                                        query: "app:github type:pull author:mortimer",
                                                        label: "Mortimer's PRs",
                                                        datasource: "github",
                                                      },
                                                    ],
                                                  },
                                                  inviteInfo: {
                                                    invites: [
                                                      {},
                                                      {},
                                                      {},
                                                    ],
                                                  },
                                                  badges: [
                                                    {
                                                      key: "deployment_name_new_hire",
                                                      displayName: "New hire",
                                                      iconConfig: {
                                                        color: "#343CED",
                                                        key: "person_icon",
                                                        iconType: "GLYPH",
                                                        name: "user",
                                                      },
                                                    },
                                                  ],
                                                },
                                              },
                                              role: "ANSWER_MODERATOR",
                                            },
                                          ],
                                        },
                                        itemType: "COLLECTION",
                                      },
                                      {
                                        collectionId: 420359,
                                        createdBy: {
                                          name: "George Clooney",
                                          obfuscatedId: "abc123",
                                          metadata: {
                                            type: "FULL_TIME",
                                            title: "Actor",
                                            department: "Movies",
                                            email: "george@example.com",
                                            location: "Hollywood, CA",
                                            phone: "6505551234",
                                            photoUrl: "https://example.com/george.jpg",
                                            startDate: new RFCDate("2000-01-23"),
                                            datasourceProfile: [
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                            ],
                                            querySuggestions: {
                                              suggestions: [
                                                {
                                                  query: "app:github type:pull author:mortimer",
                                                  label: "Mortimer's PRs",
                                                  datasource: "github",
                                                },
                                              ],
                                            },
                                            inviteInfo: {
                                              invites: [
                                                {},
                                                {},
                                                {},
                                              ],
                                            },
                                            badges: [
                                              {
                                                key: "deployment_name_new_hire",
                                                displayName: "New hire",
                                                iconConfig: {
                                                  color: "#343CED",
                                                  key: "person_icon",
                                                  iconType: "GLYPH",
                                                  name: "user",
                                                },
                                              },
                                            ],
                                          },
                                        },
                                        shortcut: {
                                          inputAlias: "<value>",
                                          createdBy: {
                                            name: "George Clooney",
                                            obfuscatedId: "abc123",
                                            metadata: {
                                              type: "FULL_TIME",
                                              title: "Actor",
                                              department: "Movies",
                                              email: "george@example.com",
                                              location: "Hollywood, CA",
                                              phone: "6505551234",
                                              photoUrl: "https://example.com/george.jpg",
                                              startDate: new RFCDate("2000-01-23"),
                                              datasourceProfile: [
                                                {
                                                  datasource: "github",
                                                  handle: "<value>",
                                                },
                                                {
                                                  datasource: "github",
                                                  handle: "<value>",
                                                },
                                                {
                                                  datasource: "github",
                                                  handle: "<value>",
                                                },
                                              ],
                                              querySuggestions: {
                                                suggestions: [
                                                  {
                                                    query: "app:github type:pull author:mortimer",
                                                    label: "Mortimer's PRs",
                                                    datasource: "github",
                                                  },
                                                ],
                                              },
                                              inviteInfo: {
                                                invites: [
                                                  {},
                                                  {},
                                                  {},
                                                ],
                                              },
                                              badges: [
                                                {
                                                  key: "deployment_name_new_hire",
                                                  displayName: "New hire",
                                                  iconConfig: {
                                                    color: "#343CED",
                                                    key: "person_icon",
                                                    iconType: "GLYPH",
                                                    name: "user",
                                                  },
                                                },
                                              ],
                                            },
                                          },
                                          updatedBy: {
                                            name: "George Clooney",
                                            obfuscatedId: "abc123",
                                            metadata: {
                                              type: "FULL_TIME",
                                              title: "Actor",
                                              department: "Movies",
                                              email: "george@example.com",
                                              location: "Hollywood, CA",
                                              phone: "6505551234",
                                              photoUrl: "https://example.com/george.jpg",
                                              startDate: new RFCDate("2000-01-23"),
                                              datasourceProfile: [
                                                {
                                                  datasource: "github",
                                                  handle: "<value>",
                                                },
                                                {
                                                  datasource: "github",
                                                  handle: "<value>",
                                                },
                                              ],
                                              querySuggestions: {
                                                suggestions: [
                                                  {
                                                    query: "app:github type:pull author:mortimer",
                                                    label: "Mortimer's PRs",
                                                    datasource: "github",
                                                  },
                                                ],
                                              },
                                              inviteInfo: {
                                                invites: [
                                                  {},
                                                  {},
                                                  {},
                                                ],
                                              },
                                              badges: [
                                                {
                                                  key: "deployment_name_new_hire",
                                                  displayName: "New hire",
                                                  iconConfig: {
                                                    color: "#343CED",
                                                    key: "person_icon",
                                                    iconType: "GLYPH",
                                                    name: "user",
                                                  },
                                                },
                                              ],
                                            },
                                          },
                                          roles: [
                                            {
                                              person: {
                                                name: "George Clooney",
                                                obfuscatedId: "abc123",
                                                metadata: {
                                                  type: "FULL_TIME",
                                                  title: "Actor",
                                                  department: "Movies",
                                                  email: "george@example.com",
                                                  location: "Hollywood, CA",
                                                  phone: "6505551234",
                                                  photoUrl: "https://example.com/george.jpg",
                                                  startDate: new RFCDate("2000-01-23"),
                                                  datasourceProfile: [
                                                    {
                                                      datasource: "github",
                                                      handle: "<value>",
                                                    },
                                                    {
                                                      datasource: "github",
                                                      handle: "<value>",
                                                    },
                                                  ],
                                                  querySuggestions: {
                                                    suggestions: [
                                                      {
                                                        query: "app:github type:pull author:mortimer",
                                                        label: "Mortimer's PRs",
                                                        datasource: "github",
                                                      },
                                                    ],
                                                  },
                                                  inviteInfo: {
                                                    invites: [
                                                      {},
                                                      {},
                                                      {},
                                                    ],
                                                  },
                                                  badges: [
                                                    {
                                                      key: "deployment_name_new_hire",
                                                      displayName: "New hire",
                                                      iconConfig: {
                                                        color: "#343CED",
                                                        key: "person_icon",
                                                        iconType: "GLYPH",
                                                        name: "user",
                                                      },
                                                    },
                                                  ],
                                                },
                                              },
                                              role: "ANSWER_MODERATOR",
                                            },
                                            {
                                              person: {
                                                name: "George Clooney",
                                                obfuscatedId: "abc123",
                                                metadata: {
                                                  type: "FULL_TIME",
                                                  title: "Actor",
                                                  department: "Movies",
                                                  email: "george@example.com",
                                                  location: "Hollywood, CA",
                                                  phone: "6505551234",
                                                  photoUrl: "https://example.com/george.jpg",
                                                  startDate: new RFCDate("2000-01-23"),
                                                  datasourceProfile: [
                                                    {
                                                      datasource: "github",
                                                      handle: "<value>",
                                                    },
                                                    {
                                                      datasource: "github",
                                                      handle: "<value>",
                                                    },
                                                  ],
                                                  querySuggestions: {
                                                    suggestions: [
                                                      {
                                                        query: "app:github type:pull author:mortimer",
                                                        label: "Mortimer's PRs",
                                                        datasource: "github",
                                                      },
                                                    ],
                                                  },
                                                  inviteInfo: {
                                                    invites: [
                                                      {},
                                                      {},
                                                      {},
                                                    ],
                                                  },
                                                  badges: [
                                                    {
                                                      key: "deployment_name_new_hire",
                                                      displayName: "New hire",
                                                      iconConfig: {
                                                        color: "#343CED",
                                                        key: "person_icon",
                                                        iconType: "GLYPH",
                                                        name: "user",
                                                      },
                                                    },
                                                  ],
                                                },
                                              },
                                              role: "ANSWER_MODERATOR",
                                            },
                                          ],
                                        },
                                        itemType: "COLLECTION",
                                      },
                                    ],
                                  },
                                ],
                                interactions: {
                                  reacts: [
                                    {
                                      reactors: [
                                        {
                                          name: "George Clooney",
                                          obfuscatedId: "abc123",
                                        },
                                      ],
                                    },
                                    {
                                      reactors: [
                                        {
                                          name: "George Clooney",
                                          obfuscatedId: "abc123",
                                        },
                                      ],
                                    },
                                  ],
                                  shares: [
                                    {
                                      numDaysAgo: 582012,
                                      sharer: {
                                        name: "George Clooney",
                                        obfuscatedId: "abc123",
                                        metadata: {
                                          type: "FULL_TIME",
                                          title: "Actor",
                                          department: "Movies",
                                          email: "george@example.com",
                                          location: "Hollywood, CA",
                                          phone: "6505551234",
                                          photoUrl: "https://example.com/george.jpg",
                                          startDate: new RFCDate("2000-01-23"),
                                          datasourceProfile: [
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                          ],
                                          querySuggestions: {
                                            suggestions: [
                                              {
                                                query: "app:github type:pull author:mortimer",
                                                label: "Mortimer's PRs",
                                                datasource: "github",
                                              },
                                            ],
                                          },
                                          inviteInfo: {
                                            invites: [
                                              {},
                                              {},
                                              {},
                                            ],
                                          },
                                          badges: [
                                            {
                                              key: "deployment_name_new_hire",
                                              displayName: "New hire",
                                              iconConfig: {
                                                color: "#343CED",
                                                key: "person_icon",
                                                iconType: "GLYPH",
                                                name: "user",
                                              },
                                            },
                                          ],
                                        },
                                      },
                                    },
                                  ],
                                },
                                verification: {
                                  state: "DEPRECATED",
                                  metadata: {
                                    lastVerifier: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    reminders: [
                                      {
                                        assignee: {
                                          name: "George Clooney",
                                          obfuscatedId: "abc123",
                                          metadata: {
                                            type: "FULL_TIME",
                                            title: "Actor",
                                            department: "Movies",
                                            email: "george@example.com",
                                            location: "Hollywood, CA",
                                            phone: "6505551234",
                                            photoUrl: "https://example.com/george.jpg",
                                            startDate: new RFCDate("2000-01-23"),
                                            datasourceProfile: [
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                            ],
                                            querySuggestions: {
                                              suggestions: [
                                                {
                                                  query: "app:github type:pull author:mortimer",
                                                  label: "Mortimer's PRs",
                                                  datasource: "github",
                                                },
                                              ],
                                            },
                                            inviteInfo: {
                                              invites: [
                                                {},
                                                {},
                                                {},
                                              ],
                                            },
                                            badges: [
                                              {
                                                key: "deployment_name_new_hire",
                                                displayName: "New hire",
                                                iconConfig: {
                                                  color: "#343CED",
                                                  key: "person_icon",
                                                  iconType: "GLYPH",
                                                  name: "user",
                                                },
                                              },
                                            ],
                                          },
                                        },
                                        requestor: {
                                          name: "George Clooney",
                                          obfuscatedId: "abc123",
                                          metadata: {
                                            type: "FULL_TIME",
                                            title: "Actor",
                                            department: "Movies",
                                            email: "george@example.com",
                                            location: "Hollywood, CA",
                                            phone: "6505551234",
                                            photoUrl: "https://example.com/george.jpg",
                                            startDate: new RFCDate("2000-01-23"),
                                            datasourceProfile: [
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                            ],
                                            querySuggestions: {
                                              suggestions: [
                                                {
                                                  query: "app:github type:pull author:mortimer",
                                                  label: "Mortimer's PRs",
                                                  datasource: "github",
                                                },
                                              ],
                                            },
                                            inviteInfo: {
                                              invites: [
                                                {},
                                                {},
                                                {},
                                              ],
                                            },
                                            badges: [
                                              {
                                                key: "deployment_name_new_hire",
                                                displayName: "New hire",
                                                iconConfig: {
                                                  color: "#343CED",
                                                  key: "person_icon",
                                                  iconType: "GLYPH",
                                                  name: "user",
                                                },
                                              },
                                            ],
                                          },
                                        },
                                        remindAt: 785622,
                                      },
                                      {
                                        assignee: {
                                          name: "George Clooney",
                                          obfuscatedId: "abc123",
                                          metadata: {
                                            type: "FULL_TIME",
                                            title: "Actor",
                                            department: "Movies",
                                            email: "george@example.com",
                                            location: "Hollywood, CA",
                                            phone: "6505551234",
                                            photoUrl: "https://example.com/george.jpg",
                                            startDate: new RFCDate("2000-01-23"),
                                            datasourceProfile: [
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                            ],
                                            querySuggestions: {
                                              suggestions: [
                                                {
                                                  query: "app:github type:pull author:mortimer",
                                                  label: "Mortimer's PRs",
                                                  datasource: "github",
                                                },
                                              ],
                                            },
                                            inviteInfo: {
                                              invites: [
                                                {},
                                                {},
                                                {},
                                              ],
                                            },
                                            badges: [
                                              {
                                                key: "deployment_name_new_hire",
                                                displayName: "New hire",
                                                iconConfig: {
                                                  color: "#343CED",
                                                  key: "person_icon",
                                                  iconType: "GLYPH",
                                                  name: "user",
                                                },
                                              },
                                            ],
                                          },
                                        },
                                        requestor: {
                                          name: "George Clooney",
                                          obfuscatedId: "abc123",
                                          metadata: {
                                            type: "FULL_TIME",
                                            title: "Actor",
                                            department: "Movies",
                                            email: "george@example.com",
                                            location: "Hollywood, CA",
                                            phone: "6505551234",
                                            photoUrl: "https://example.com/george.jpg",
                                            startDate: new RFCDate("2000-01-23"),
                                            datasourceProfile: [
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                            ],
                                            querySuggestions: {
                                              suggestions: [
                                                {
                                                  query: "app:github type:pull author:mortimer",
                                                  label: "Mortimer's PRs",
                                                  datasource: "github",
                                                },
                                              ],
                                            },
                                            inviteInfo: {
                                              invites: [
                                                {},
                                                {},
                                                {},
                                              ],
                                            },
                                            badges: [
                                              {
                                                key: "deployment_name_new_hire",
                                                displayName: "New hire",
                                                iconConfig: {
                                                  color: "#343CED",
                                                  key: "person_icon",
                                                  iconType: "GLYPH",
                                                  name: "user",
                                                },
                                              },
                                            ],
                                          },
                                        },
                                        remindAt: 785622,
                                      },
                                      {
                                        assignee: {
                                          name: "George Clooney",
                                          obfuscatedId: "abc123",
                                          metadata: {
                                            type: "FULL_TIME",
                                            title: "Actor",
                                            department: "Movies",
                                            email: "george@example.com",
                                            location: "Hollywood, CA",
                                            phone: "6505551234",
                                            photoUrl: "https://example.com/george.jpg",
                                            startDate: new RFCDate("2000-01-23"),
                                            datasourceProfile: [
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                            ],
                                            querySuggestions: {
                                              suggestions: [
                                                {
                                                  query: "app:github type:pull author:mortimer",
                                                  label: "Mortimer's PRs",
                                                  datasource: "github",
                                                },
                                              ],
                                            },
                                            inviteInfo: {
                                              invites: [
                                                {},
                                                {},
                                                {},
                                              ],
                                            },
                                            badges: [
                                              {
                                                key: "deployment_name_new_hire",
                                                displayName: "New hire",
                                                iconConfig: {
                                                  color: "#343CED",
                                                  key: "person_icon",
                                                  iconType: "GLYPH",
                                                  name: "user",
                                                },
                                              },
                                            ],
                                          },
                                        },
                                        requestor: {
                                          name: "George Clooney",
                                          obfuscatedId: "abc123",
                                          metadata: {
                                            type: "FULL_TIME",
                                            title: "Actor",
                                            department: "Movies",
                                            email: "george@example.com",
                                            location: "Hollywood, CA",
                                            phone: "6505551234",
                                            photoUrl: "https://example.com/george.jpg",
                                            startDate: new RFCDate("2000-01-23"),
                                            datasourceProfile: [
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                            ],
                                            querySuggestions: {
                                              suggestions: [
                                                {
                                                  query: "app:github type:pull author:mortimer",
                                                  label: "Mortimer's PRs",
                                                  datasource: "github",
                                                },
                                              ],
                                            },
                                            inviteInfo: {
                                              invites: [
                                                {},
                                                {},
                                                {},
                                              ],
                                            },
                                            badges: [
                                              {
                                                key: "deployment_name_new_hire",
                                                displayName: "New hire",
                                                iconConfig: {
                                                  color: "#343CED",
                                                  key: "person_icon",
                                                  iconType: "GLYPH",
                                                  name: "user",
                                                },
                                              },
                                            ],
                                          },
                                        },
                                        remindAt: 785622,
                                      },
                                    ],
                                    lastReminder: {
                                      assignee: {
                                        name: "George Clooney",
                                        obfuscatedId: "abc123",
                                        metadata: {
                                          type: "FULL_TIME",
                                          title: "Actor",
                                          department: "Movies",
                                          email: "george@example.com",
                                          location: "Hollywood, CA",
                                          phone: "6505551234",
                                          photoUrl: "https://example.com/george.jpg",
                                          startDate: new RFCDate("2000-01-23"),
                                          datasourceProfile: [
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                          ],
                                          querySuggestions: {
                                            suggestions: [
                                              {
                                                query: "app:github type:pull author:mortimer",
                                                label: "Mortimer's PRs",
                                                datasource: "github",
                                              },
                                            ],
                                          },
                                          inviteInfo: {
                                            invites: [
                                              {},
                                              {},
                                              {},
                                            ],
                                          },
                                          badges: [
                                            {
                                              key: "deployment_name_new_hire",
                                              displayName: "New hire",
                                              iconConfig: {
                                                color: "#343CED",
                                                key: "person_icon",
                                                iconType: "GLYPH",
                                                name: "user",
                                              },
                                            },
                                          ],
                                        },
                                      },
                                      requestor: {
                                        name: "George Clooney",
                                        obfuscatedId: "abc123",
                                        metadata: {
                                          type: "FULL_TIME",
                                          title: "Actor",
                                          department: "Movies",
                                          email: "george@example.com",
                                          location: "Hollywood, CA",
                                          phone: "6505551234",
                                          photoUrl: "https://example.com/george.jpg",
                                          startDate: new RFCDate("2000-01-23"),
                                          datasourceProfile: [
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                          ],
                                          querySuggestions: {
                                            suggestions: [
                                              {
                                                query: "app:github type:pull author:mortimer",
                                                label: "Mortimer's PRs",
                                                datasource: "github",
                                              },
                                            ],
                                          },
                                          inviteInfo: {
                                            invites: [
                                              {},
                                              {},
                                              {},
                                            ],
                                          },
                                          badges: [
                                            {
                                              key: "deployment_name_new_hire",
                                              displayName: "New hire",
                                              iconConfig: {
                                                color: "#343CED",
                                                key: "person_icon",
                                                iconType: "GLYPH",
                                                name: "user",
                                              },
                                            },
                                          ],
                                        },
                                      },
                                      remindAt: 269943,
                                    },
                                    candidateVerifiers: [
                                      {
                                        name: "George Clooney",
                                        obfuscatedId: "abc123",
                                      },
                                    ],
                                  },
                                },
                                shortcuts: [
                                  {
                                    inputAlias: "<value>",
                                    createdBy: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    updatedBy: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                  },
                                ],
                                customData: {
                                  "someCustomField": {},
                                },
                                contactPerson: {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                  metadata: {
                                    type: "FULL_TIME",
                                    title: "Actor",
                                    department: "Movies",
                                    email: "george@example.com",
                                    location: "Hollywood, CA",
                                    phone: "6505551234",
                                    photoUrl: "https://example.com/george.jpg",
                                    startDate: new RFCDate("2000-01-23"),
                                    datasourceProfile: [
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                    ],
                                    querySuggestions: {
                                      suggestions: [
                                        {
                                          query: "app:github type:pull author:mortimer",
                                          label: "Mortimer's PRs",
                                          datasource: "github",
                                        },
                                      ],
                                    },
                                    inviteInfo: {
                                      invites: [
                                        {},
                                        {},
                                        {},
                                      ],
                                    },
                                    badges: [
                                      {
                                        key: "deployment_name_new_hire",
                                        displayName: "New hire",
                                        iconConfig: {
                                          color: "#343CED",
                                          key: "person_icon",
                                          iconType: "GLYPH",
                                          name: "user",
                                        },
                                      },
                                    ],
                                  },
                                },
                              },
                            },
                            title: "title",
                            url: "https://example.com/foo/bar",
                            nativeAppUrl: "slack://foo/bar",
                            snippets: [
                              {
                                mimeType: "mimeType",
                                snippet: "snippet",
                              },
                            ],
                            relatedResults: [
                              {
                                querySuggestion: {
                                  query: "app:github type:pull author:mortimer",
                                  searchProviderInfo: {
                                    name: "Google",
                                    searchLinkUrlTemplate: "https://www.google.com/search?q={query}&hl=en",
                                  },
                                  label: "Mortimer's PRs",
                                  datasource: "github",
                                  requestOptions: {
                                    datasourceFilter: "JIRA",
                                    datasourcesFilter: [
                                      "JIRA",
                                    ],
                                    queryOverridesFacetFilters: true,
                                    facetFilters: [
                                      {
                                        fieldName: "type",
                                        values: [
                                          {
                                            value: "Spreadsheet",
                                            relationType: "EQUALS",
                                          },
                                          {
                                            value: "Presentation",
                                            relationType: "EQUALS",
                                          },
                                        ],
                                      },
                                    ],
                                    facetFilterSets: [
                                      {
                                        filters: [
                                          {
                                            fieldName: "type",
                                            values: [
                                              {
                                                value: "Spreadsheet",
                                                relationType: "EQUALS",
                                              },
                                              {
                                                value: "Presentation",
                                                relationType: "EQUALS",
                                              },
                                            ],
                                          },
                                        ],
                                      },
                                      {
                                        filters: [
                                          {
                                            fieldName: "type",
                                            values: [
                                              {
                                                value: "Spreadsheet",
                                                relationType: "EQUALS",
                                              },
                                              {
                                                value: "Presentation",
                                                relationType: "EQUALS",
                                              },
                                            ],
                                          },
                                        ],
                                      },
                                      {
                                        filters: [
                                          {
                                            fieldName: "type",
                                            values: [
                                              {
                                                value: "Spreadsheet",
                                                relationType: "EQUALS",
                                              },
                                              {
                                                value: "Presentation",
                                                relationType: "EQUALS",
                                              },
                                            ],
                                          },
                                        ],
                                      },
                                    ],
                                    facetBucketSize: 127205,
                                    authTokens: [
                                      {
                                        accessToken: "123abc",
                                        datasource: "gmail",
                                        scope: "email profile https://www.googleapis.com/auth/gmail.readonly",
                                        tokenType: "Bearer",
                                        authUser: "1",
                                      },
                                    ],
                                  },
                                  inputDetails: {
                                    hasCopyPaste: true,
                                  },
                                },
                              },
                              {
                                querySuggestion: {
                                  query: "app:github type:pull author:mortimer",
                                  searchProviderInfo: {
                                    name: "Google",
                                    searchLinkUrlTemplate: "https://www.google.com/search?q={query}&hl=en",
                                  },
                                  label: "Mortimer's PRs",
                                  datasource: "github",
                                  requestOptions: {
                                    datasourceFilter: "JIRA",
                                    datasourcesFilter: [
                                      "JIRA",
                                    ],
                                    queryOverridesFacetFilters: true,
                                    facetFilters: [
                                      {
                                        fieldName: "type",
                                        values: [
                                          {
                                            value: "Spreadsheet",
                                            relationType: "EQUALS",
                                          },
                                          {
                                            value: "Presentation",
                                            relationType: "EQUALS",
                                          },
                                        ],
                                      },
                                    ],
                                    facetFilterSets: [
                                      {
                                        filters: [
                                          {
                                            fieldName: "type",
                                            values: [
                                              {
                                                value: "Spreadsheet",
                                                relationType: "EQUALS",
                                              },
                                              {
                                                value: "Presentation",
                                                relationType: "EQUALS",
                                              },
                                            ],
                                          },
                                        ],
                                      },
                                      {
                                        filters: [
                                          {
                                            fieldName: "type",
                                            values: [
                                              {
                                                value: "Spreadsheet",
                                                relationType: "EQUALS",
                                              },
                                              {
                                                value: "Presentation",
                                                relationType: "EQUALS",
                                              },
                                            ],
                                          },
                                        ],
                                      },
                                      {
                                        filters: [
                                          {
                                            fieldName: "type",
                                            values: [
                                              {
                                                value: "Spreadsheet",
                                                relationType: "EQUALS",
                                              },
                                              {
                                                value: "Presentation",
                                                relationType: "EQUALS",
                                              },
                                            ],
                                          },
                                        ],
                                      },
                                    ],
                                    facetBucketSize: 127205,
                                    authTokens: [
                                      {
                                        accessToken: "123abc",
                                        datasource: "gmail",
                                        scope: "email profile https://www.googleapis.com/auth/gmail.readonly",
                                        tokenType: "Bearer",
                                        authUser: "1",
                                      },
                                    ],
                                  },
                                  inputDetails: {
                                    hasCopyPaste: true,
                                  },
                                },
                              },
                            ],
                            allClusteredResults: [
                              {
                                visibleCountHint: 156570,
                              },
                              {
                                visibleCountHint: 156570,
                              },
                            ],
                            mustIncludeSuggestions: {
                              person: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                            },
                            querySuggestion: {
                              query: "app:github type:pull author:mortimer",
                              searchProviderInfo: {
                                name: "Google",
                                searchLinkUrlTemplate: "https://www.google.com/search?q={query}&hl=en",
                              },
                              label: "Mortimer's PRs",
                              datasource: "github",
                              requestOptions: {
                                datasourceFilter: "JIRA",
                                datasourcesFilter: [
                                  "JIRA",
                                ],
                                queryOverridesFacetFilters: true,
                                facetFilters: [
                                  {
                                    fieldName: "type",
                                    values: [
                                      {
                                        value: "Spreadsheet",
                                        relationType: "EQUALS",
                                      },
                                      {
                                        value: "Presentation",
                                        relationType: "EQUALS",
                                      },
                                    ],
                                  },
                                ],
                                facetFilterSets: [
                                  {
                                    filters: [
                                      {
                                        fieldName: "type",
                                        values: [
                                          {
                                            value: "Spreadsheet",
                                            relationType: "EQUALS",
                                          },
                                          {
                                            value: "Presentation",
                                            relationType: "EQUALS",
                                          },
                                        ],
                                      },
                                    ],
                                  },
                                  {
                                    filters: [
                                      {
                                        fieldName: "type",
                                        values: [
                                          {
                                            value: "Spreadsheet",
                                            relationType: "EQUALS",
                                          },
                                          {
                                            value: "Presentation",
                                            relationType: "EQUALS",
                                          },
                                        ],
                                      },
                                    ],
                                  },
                                  {
                                    filters: [
                                      {
                                        fieldName: "type",
                                        values: [
                                          {
                                            value: "Spreadsheet",
                                            relationType: "EQUALS",
                                          },
                                          {
                                            value: "Presentation",
                                            relationType: "EQUALS",
                                          },
                                        ],
                                      },
                                    ],
                                  },
                                ],
                                facetBucketSize: 974103,
                                authTokens: [
                                  {
                                    accessToken: "123abc",
                                    datasource: "gmail",
                                    scope: "email profile https://www.googleapis.com/auth/gmail.readonly",
                                    tokenType: "Bearer",
                                    authUser: "1",
                                  },
                                ],
                              },
                              inputDetails: {
                                hasCopyPaste: true,
                              },
                            },
                          },
                        },
                        meeting: {
                          attendees: {
                            people: [
                              {
                                person: {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                  metadata: {
                                    type: "FULL_TIME",
                                    title: "Actor",
                                    department: "Movies",
                                    email: "george@example.com",
                                    location: "Hollywood, CA",
                                    phone: "6505551234",
                                    photoUrl: "https://example.com/george.jpg",
                                    startDate: new RFCDate("2000-01-23"),
                                    datasourceProfile: [
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                    ],
                                    querySuggestions: {
                                      suggestions: [
                                        {
                                          query: "app:github type:pull author:mortimer",
                                          label: "Mortimer's PRs",
                                          datasource: "github",
                                        },
                                      ],
                                    },
                                    inviteInfo: {
                                      invites: [
                                        {},
                                        {},
                                        {},
                                      ],
                                    },
                                    badges: [
                                      {
                                        key: "deployment_name_new_hire",
                                        displayName: "New hire",
                                        iconConfig: {
                                          color: "#343CED",
                                          key: "person_icon",
                                          iconType: "GLYPH",
                                          name: "user",
                                        },
                                      },
                                    ],
                                  },
                                },
                              },
                              {
                                person: {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                  metadata: {
                                    type: "FULL_TIME",
                                    title: "Actor",
                                    department: "Movies",
                                    email: "george@example.com",
                                    location: "Hollywood, CA",
                                    phone: "6505551234",
                                    photoUrl: "https://example.com/george.jpg",
                                    startDate: new RFCDate("2000-01-23"),
                                    datasourceProfile: [
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                    ],
                                    querySuggestions: {
                                      suggestions: [
                                        {
                                          query: "app:github type:pull author:mortimer",
                                          label: "Mortimer's PRs",
                                          datasource: "github",
                                        },
                                      ],
                                    },
                                    inviteInfo: {
                                      invites: [
                                        {},
                                        {},
                                        {},
                                      ],
                                    },
                                    badges: [
                                      {
                                        key: "deployment_name_new_hire",
                                        displayName: "New hire",
                                        iconConfig: {
                                          color: "#343CED",
                                          key: "person_icon",
                                          iconType: "GLYPH",
                                          name: "user",
                                        },
                                      },
                                    ],
                                  },
                                },
                              },
                            ],
                          },
                        },
                        collection: {
                          name: "<value>",
                          description: "rubric sadly clueless whoever torn rim coaxingly",
                          audienceFilters: [
                            {
                              fieldName: "type",
                              values: [
                                {
                                  value: "Spreadsheet",
                                  relationType: "EQUALS",
                                },
                                {
                                  value: "Presentation",
                                  relationType: "EQUALS",
                                },
                              ],
                            },
                          ],
                          id: 690639,
                          creator: {
                            name: "George Clooney",
                            obfuscatedId: "abc123",
                            metadata: {
                              type: "FULL_TIME",
                              title: "Actor",
                              department: "Movies",
                              email: "george@example.com",
                              location: "Hollywood, CA",
                              phone: "6505551234",
                              photoUrl: "https://example.com/george.jpg",
                              startDate: new RFCDate("2000-01-23"),
                              datasourceProfile: [
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                              ],
                              querySuggestions: {
                                suggestions: [
                                  {
                                    query: "app:github type:pull author:mortimer",
                                    label: "Mortimer's PRs",
                                    datasource: "github",
                                  },
                                ],
                              },
                              inviteInfo: {
                                invites: [
                                  {},
                                  {},
                                  {},
                                ],
                              },
                              badges: [
                                {
                                  key: "deployment_name_new_hire",
                                  displayName: "New hire",
                                  iconConfig: {
                                    color: "#343CED",
                                    key: "person_icon",
                                    iconType: "GLYPH",
                                    name: "user",
                                  },
                                },
                              ],
                            },
                          },
                          updatedBy: {
                            name: "George Clooney",
                            obfuscatedId: "abc123",
                            metadata: {
                              type: "FULL_TIME",
                              title: "Actor",
                              department: "Movies",
                              email: "george@example.com",
                              location: "Hollywood, CA",
                              phone: "6505551234",
                              photoUrl: "https://example.com/george.jpg",
                              startDate: new RFCDate("2000-01-23"),
                              datasourceProfile: [
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                              ],
                              querySuggestions: {
                                suggestions: [
                                  {
                                    query: "app:github type:pull author:mortimer",
                                    label: "Mortimer's PRs",
                                    datasource: "github",
                                  },
                                ],
                              },
                              inviteInfo: {
                                invites: [
                                  {},
                                  {},
                                  {},
                                ],
                              },
                              badges: [
                                {
                                  key: "deployment_name_new_hire",
                                  displayName: "New hire",
                                  iconConfig: {
                                    color: "#343CED",
                                    key: "person_icon",
                                    iconType: "GLYPH",
                                    name: "user",
                                  },
                                },
                              ],
                            },
                          },
                        },
                        code: {
                          repoName: "scio",
                          fileName: "README.md",
                          lines: [
                            {},
                          ],
                        },
                        shortcut: {
                          inputAlias: "<value>",
                          createdBy: {
                            name: "George Clooney",
                            obfuscatedId: "abc123",
                            metadata: {
                              type: "FULL_TIME",
                              title: "Actor",
                              department: "Movies",
                              email: "george@example.com",
                              location: "Hollywood, CA",
                              phone: "6505551234",
                              photoUrl: "https://example.com/george.jpg",
                              startDate: new RFCDate("2000-01-23"),
                              datasourceProfile: [
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                              ],
                              querySuggestions: {
                                suggestions: [
                                  {
                                    query: "app:github type:pull author:mortimer",
                                    label: "Mortimer's PRs",
                                    datasource: "github",
                                  },
                                ],
                              },
                              inviteInfo: {
                                invites: [
                                  {},
                                  {},
                                  {},
                                ],
                              },
                              badges: [
                                {
                                  key: "deployment_name_new_hire",
                                  displayName: "New hire",
                                  iconConfig: {
                                    color: "#343CED",
                                    key: "person_icon",
                                    iconType: "GLYPH",
                                    name: "user",
                                  },
                                },
                              ],
                            },
                          },
                          updatedBy: {
                            name: "George Clooney",
                            obfuscatedId: "abc123",
                            metadata: {
                              type: "FULL_TIME",
                              title: "Actor",
                              department: "Movies",
                              email: "george@example.com",
                              location: "Hollywood, CA",
                              phone: "6505551234",
                              photoUrl: "https://example.com/george.jpg",
                              startDate: new RFCDate("2000-01-23"),
                              datasourceProfile: [
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                              ],
                              querySuggestions: {
                                suggestions: [
                                  {
                                    query: "app:github type:pull author:mortimer",
                                    label: "Mortimer's PRs",
                                    datasource: "github",
                                  },
                                ],
                              },
                              inviteInfo: {
                                invites: [
                                  {},
                                  {},
                                  {},
                                ],
                              },
                              badges: [
                                {
                                  key: "deployment_name_new_hire",
                                  displayName: "New hire",
                                  iconConfig: {
                                    color: "#343CED",
                                    key: "person_icon",
                                    iconType: "GLYPH",
                                    name: "user",
                                  },
                                },
                              ],
                            },
                          },
                          destinationDocument: {
                            metadata: {
                              datasource: "datasource",
                              objectType: "Feature Request",
                              container: "container",
                              parentId: "JIRA_EN-1337",
                              mimeType: "mimeType",
                              documentId: "documentId",
                              createTime: new Date("2000-01-23T04:56:07.000Z"),
                              updateTime: new Date("2000-01-23T04:56:07.000Z"),
                              author: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                              owner: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                              components: [
                                "Backend",
                                "Networking",
                              ],
                              status: "[\"Done\"]",
                              assignedTo: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                              updatedBy: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                              verification: {
                                state: "VERIFIED",
                                metadata: {
                                  lastVerifier: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  lastReminder: {
                                    assignee: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    requestor: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    remindAt: 716571,
                                  },
                                },
                              },
                              customData: {
                                "someCustomField": {},
                              },
                              contactPerson: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                            },
                          },
                          roles: [
                            {
                              person: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  querySuggestions: {
                                    suggestions: [
                                      {
                                        query: "app:github type:pull author:mortimer",
                                        label: "Mortimer's PRs",
                                        datasource: "github",
                                      },
                                    ],
                                  },
                                  inviteInfo: {
                                    invites: [
                                      {},
                                      {},
                                      {},
                                    ],
                                  },
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                              role: "ANSWER_MODERATOR",
                            },
                            {
                              person: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  querySuggestions: {
                                    suggestions: [
                                      {
                                        query: "app:github type:pull author:mortimer",
                                        label: "Mortimer's PRs",
                                        datasource: "github",
                                      },
                                    ],
                                  },
                                  inviteInfo: {
                                    invites: [
                                      {},
                                      {},
                                      {},
                                    ],
                                  },
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                              role: "ANSWER_MODERATOR",
                            },
                          ],
                        },
                        querySuggestions: {
                          suggestions: [
                            {
                              query: "app:github type:pull author:mortimer",
                              label: "Mortimer's PRs",
                              datasource: "github",
                            },
                          ],
                          person: {
                            name: "George Clooney",
                            obfuscatedId: "abc123",
                            metadata: {
                              type: "FULL_TIME",
                              title: "Actor",
                              department: "Movies",
                              email: "george@example.com",
                              location: "Hollywood, CA",
                              phone: "6505551234",
                              photoUrl: "https://example.com/george.jpg",
                              startDate: new RFCDate("2000-01-23"),
                              datasourceProfile: [
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                              ],
                              badges: [
                                {
                                  key: "deployment_name_new_hire",
                                  displayName: "New hire",
                                  iconConfig: {
                                    color: "#343CED",
                                    key: "person_icon",
                                    iconType: "GLYPH",
                                    name: "user",
                                  },
                                },
                              ],
                            },
                          },
                        },
                      },
                    },
                    {
                      link: "https://en.wikipedia.org/wiki/Diffuse_sky_radiation",
                      document: {
                        metadata: {
                          datasource: "datasource",
                          objectType: "Feature Request",
                          container: "container",
                          parentId: "JIRA_EN-1337",
                          mimeType: "mimeType",
                          documentId: "documentId",
                          createTime: new Date("2000-01-23T04:56:07.000Z"),
                          updateTime: new Date("2000-01-23T04:56:07.000Z"),
                          author: {
                            name: "George Clooney",
                            obfuscatedId: "abc123",
                            relatedDocuments: [
                              {
                                querySuggestion: {
                                  query: "app:github type:pull author:mortimer",
                                  searchProviderInfo: {
                                    name: "Google",
                                    searchLinkUrlTemplate: "https://www.google.com/search?q={query}&hl=en",
                                  },
                                  label: "Mortimer's PRs",
                                  datasource: "github",
                                  requestOptions: {
                                    datasourceFilter: "JIRA",
                                    datasourcesFilter: [
                                      "JIRA",
                                    ],
                                    queryOverridesFacetFilters: true,
                                    facetFilters: [
                                      {
                                        fieldName: "type",
                                        values: [
                                          {
                                            value: "Spreadsheet",
                                            relationType: "EQUALS",
                                          },
                                          {
                                            value: "Presentation",
                                            relationType: "EQUALS",
                                          },
                                        ],
                                      },
                                    ],
                                    facetFilterSets: [
                                      {
                                        filters: [
                                          {
                                            fieldName: "type",
                                            values: [
                                              {
                                                value: "Spreadsheet",
                                                relationType: "EQUALS",
                                              },
                                              {
                                                value: "Presentation",
                                                relationType: "EQUALS",
                                              },
                                            ],
                                          },
                                        ],
                                      },
                                      {
                                        filters: [
                                          {
                                            fieldName: "type",
                                            values: [
                                              {
                                                value: "Spreadsheet",
                                                relationType: "EQUALS",
                                              },
                                              {
                                                value: "Presentation",
                                                relationType: "EQUALS",
                                              },
                                            ],
                                          },
                                        ],
                                      },
                                    ],
                                    facetBucketSize: 843281,
                                    authTokens: [
                                      {
                                        accessToken: "123abc",
                                        datasource: "gmail",
                                        scope: "email profile https://www.googleapis.com/auth/gmail.readonly",
                                        tokenType: "Bearer",
                                        authUser: "1",
                                      },
                                    ],
                                  },
                                  ranges: [
                                    {
                                      startIndex: 925801,
                                    },
                                    {
                                      startIndex: 925801,
                                    },
                                    {
                                      startIndex: 925801,
                                    },
                                  ],
                                  inputDetails: {
                                    hasCopyPaste: true,
                                  },
                                },
                                results: [
                                  {
                                    title: "title",
                                    url: "https://example.com/foo/bar",
                                    nativeAppUrl: "slack://foo/bar",
                                    snippets: [
                                      {
                                        mimeType: "mimeType",
                                        snippet: "snippet",
                                      },
                                    ],
                                  },
                                ],
                              },
                              {
                                querySuggestion: {
                                  query: "app:github type:pull author:mortimer",
                                  searchProviderInfo: {
                                    name: "Google",
                                    searchLinkUrlTemplate: "https://www.google.com/search?q={query}&hl=en",
                                  },
                                  label: "Mortimer's PRs",
                                  datasource: "github",
                                  requestOptions: {
                                    datasourceFilter: "JIRA",
                                    datasourcesFilter: [
                                      "JIRA",
                                    ],
                                    queryOverridesFacetFilters: true,
                                    facetFilters: [
                                      {
                                        fieldName: "type",
                                        values: [
                                          {
                                            value: "Spreadsheet",
                                            relationType: "EQUALS",
                                          },
                                          {
                                            value: "Presentation",
                                            relationType: "EQUALS",
                                          },
                                        ],
                                      },
                                    ],
                                    facetFilterSets: [
                                      {
                                        filters: [
                                          {
                                            fieldName: "type",
                                            values: [
                                              {
                                                value: "Spreadsheet",
                                                relationType: "EQUALS",
                                              },
                                              {
                                                value: "Presentation",
                                                relationType: "EQUALS",
                                              },
                                            ],
                                          },
                                        ],
                                      },
                                      {
                                        filters: [
                                          {
                                            fieldName: "type",
                                            values: [
                                              {
                                                value: "Spreadsheet",
                                                relationType: "EQUALS",
                                              },
                                              {
                                                value: "Presentation",
                                                relationType: "EQUALS",
                                              },
                                            ],
                                          },
                                        ],
                                      },
                                    ],
                                    facetBucketSize: 843281,
                                    authTokens: [
                                      {
                                        accessToken: "123abc",
                                        datasource: "gmail",
                                        scope: "email profile https://www.googleapis.com/auth/gmail.readonly",
                                        tokenType: "Bearer",
                                        authUser: "1",
                                      },
                                    ],
                                  },
                                  ranges: [
                                    {
                                      startIndex: 925801,
                                    },
                                    {
                                      startIndex: 925801,
                                    },
                                    {
                                      startIndex: 925801,
                                    },
                                  ],
                                  inputDetails: {
                                    hasCopyPaste: true,
                                  },
                                },
                                results: [
                                  {
                                    title: "title",
                                    url: "https://example.com/foo/bar",
                                    nativeAppUrl: "slack://foo/bar",
                                    snippets: [
                                      {
                                        mimeType: "mimeType",
                                        snippet: "snippet",
                                      },
                                    ],
                                  },
                                ],
                              },
                              {
                                querySuggestion: {
                                  query: "app:github type:pull author:mortimer",
                                  searchProviderInfo: {
                                    name: "Google",
                                    searchLinkUrlTemplate: "https://www.google.com/search?q={query}&hl=en",
                                  },
                                  label: "Mortimer's PRs",
                                  datasource: "github",
                                  requestOptions: {
                                    datasourceFilter: "JIRA",
                                    datasourcesFilter: [
                                      "JIRA",
                                    ],
                                    queryOverridesFacetFilters: true,
                                    facetFilters: [
                                      {
                                        fieldName: "type",
                                        values: [
                                          {
                                            value: "Spreadsheet",
                                            relationType: "EQUALS",
                                          },
                                          {
                                            value: "Presentation",
                                            relationType: "EQUALS",
                                          },
                                        ],
                                      },
                                    ],
                                    facetFilterSets: [
                                      {
                                        filters: [
                                          {
                                            fieldName: "type",
                                            values: [
                                              {
                                                value: "Spreadsheet",
                                                relationType: "EQUALS",
                                              },
                                              {
                                                value: "Presentation",
                                                relationType: "EQUALS",
                                              },
                                            ],
                                          },
                                        ],
                                      },
                                      {
                                        filters: [
                                          {
                                            fieldName: "type",
                                            values: [
                                              {
                                                value: "Spreadsheet",
                                                relationType: "EQUALS",
                                              },
                                              {
                                                value: "Presentation",
                                                relationType: "EQUALS",
                                              },
                                            ],
                                          },
                                        ],
                                      },
                                    ],
                                    facetBucketSize: 843281,
                                    authTokens: [
                                      {
                                        accessToken: "123abc",
                                        datasource: "gmail",
                                        scope: "email profile https://www.googleapis.com/auth/gmail.readonly",
                                        tokenType: "Bearer",
                                        authUser: "1",
                                      },
                                    ],
                                  },
                                  ranges: [
                                    {
                                      startIndex: 925801,
                                    },
                                    {
                                      startIndex: 925801,
                                    },
                                    {
                                      startIndex: 925801,
                                    },
                                  ],
                                  inputDetails: {
                                    hasCopyPaste: true,
                                  },
                                },
                                results: [
                                  {
                                    title: "title",
                                    url: "https://example.com/foo/bar",
                                    nativeAppUrl: "slack://foo/bar",
                                    snippets: [
                                      {
                                        mimeType: "mimeType",
                                        snippet: "snippet",
                                      },
                                    ],
                                  },
                                ],
                              },
                            ],
                            metadata: {
                              type: "FULL_TIME",
                              title: "Actor",
                              department: "Movies",
                              email: "george@example.com",
                              location: "Hollywood, CA",
                              phone: "6505551234",
                              photoUrl: "https://example.com/george.jpg",
                              startDate: new RFCDate("2000-01-23"),
                              datasourceProfile: [
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                              ],
                              querySuggestions: {
                                suggestions: [
                                  {
                                    query: "app:github type:pull author:mortimer",
                                    label: "Mortimer's PRs",
                                    datasource: "github",
                                  },
                                ],
                              },
                              inviteInfo: {
                                invites: [
                                  {},
                                  {},
                                  {},
                                ],
                              },
                              customFields: [
                                {
                                  label: "<value>",
                                  values: [
                                    {},
                                    {},
                                  ],
                                },
                                {
                                  label: "<value>",
                                  values: [
                                    {},
                                    {},
                                  ],
                                },
                                {
                                  label: "<value>",
                                  values: [
                                    {},
                                    {},
                                  ],
                                },
                              ],
                              badges: [
                                {
                                  key: "deployment_name_new_hire",
                                  displayName: "New hire",
                                  iconConfig: {
                                    color: "#343CED",
                                    key: "person_icon",
                                    iconType: "GLYPH",
                                    name: "user",
                                  },
                                },
                              ],
                            },
                          },
                          owner: {
                            name: "George Clooney",
                            obfuscatedId: "abc123",
                            metadata: {
                              type: "FULL_TIME",
                              title: "Actor",
                              department: "Movies",
                              email: "george@example.com",
                              location: "Hollywood, CA",
                              phone: "6505551234",
                              photoUrl: "https://example.com/george.jpg",
                              startDate: new RFCDate("2000-01-23"),
                              datasourceProfile: [
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                              ],
                              querySuggestions: {
                                suggestions: [
                                  {
                                    query: "app:github type:pull author:mortimer",
                                    label: "Mortimer's PRs",
                                    datasource: "github",
                                  },
                                ],
                              },
                              inviteInfo: {
                                invites: [
                                  {},
                                  {},
                                  {},
                                ],
                              },
                              badges: [
                                {
                                  key: "deployment_name_new_hire",
                                  displayName: "New hire",
                                  iconConfig: {
                                    color: "#343CED",
                                    key: "person_icon",
                                    iconType: "GLYPH",
                                    name: "user",
                                  },
                                },
                              ],
                            },
                          },
                          mentionedPeople: [
                            {
                              name: "George Clooney",
                              obfuscatedId: "abc123",
                            },
                          ],
                          components: [
                            "Backend",
                            "Networking",
                          ],
                          status: "[\"Done\"]",
                          pins: [
                            {
                              audienceFilters: [
                                {
                                  fieldName: "type",
                                  values: [
                                    {
                                      value: "Spreadsheet",
                                      relationType: "EQUALS",
                                    },
                                    {
                                      value: "Presentation",
                                      relationType: "EQUALS",
                                    },
                                  ],
                                },
                              ],
                              documentId: "<id>",
                              attribution: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  querySuggestions: {
                                    suggestions: [
                                      {
                                        query: "app:github type:pull author:mortimer",
                                        label: "Mortimer's PRs",
                                        datasource: "github",
                                      },
                                    ],
                                  },
                                  inviteInfo: {
                                    invites: [
                                      {},
                                      {},
                                      {},
                                    ],
                                  },
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                              updatedBy: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  querySuggestions: {
                                    suggestions: [
                                      {
                                        query: "app:github type:pull author:mortimer",
                                        label: "Mortimer's PRs",
                                        datasource: "github",
                                      },
                                    ],
                                  },
                                  inviteInfo: {
                                    invites: [
                                      {},
                                      {},
                                      {},
                                    ],
                                  },
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                            },
                            {
                              audienceFilters: [
                                {
                                  fieldName: "type",
                                  values: [
                                    {
                                      value: "Spreadsheet",
                                      relationType: "EQUALS",
                                    },
                                    {
                                      value: "Presentation",
                                      relationType: "EQUALS",
                                    },
                                  ],
                                },
                              ],
                              documentId: "<id>",
                              attribution: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  querySuggestions: {
                                    suggestions: [
                                      {
                                        query: "app:github type:pull author:mortimer",
                                        label: "Mortimer's PRs",
                                        datasource: "github",
                                      },
                                    ],
                                  },
                                  inviteInfo: {
                                    invites: [
                                      {},
                                      {},
                                      {},
                                    ],
                                  },
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                              updatedBy: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  querySuggestions: {
                                    suggestions: [
                                      {
                                        query: "app:github type:pull author:mortimer",
                                        label: "Mortimer's PRs",
                                        datasource: "github",
                                      },
                                    ],
                                  },
                                  inviteInfo: {
                                    invites: [
                                      {},
                                      {},
                                      {},
                                    ],
                                  },
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                            },
                          ],
                          assignedTo: {
                            name: "George Clooney",
                            obfuscatedId: "abc123",
                            metadata: {
                              type: "FULL_TIME",
                              title: "Actor",
                              department: "Movies",
                              email: "george@example.com",
                              location: "Hollywood, CA",
                              phone: "6505551234",
                              photoUrl: "https://example.com/george.jpg",
                              startDate: new RFCDate("2000-01-23"),
                              datasourceProfile: [
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                              ],
                              querySuggestions: {
                                suggestions: [
                                  {
                                    query: "app:github type:pull author:mortimer",
                                    label: "Mortimer's PRs",
                                    datasource: "github",
                                  },
                                ],
                              },
                              inviteInfo: {
                                invites: [
                                  {},
                                  {},
                                  {},
                                ],
                              },
                              badges: [
                                {
                                  key: "deployment_name_new_hire",
                                  displayName: "New hire",
                                  iconConfig: {
                                    color: "#343CED",
                                    key: "person_icon",
                                    iconType: "GLYPH",
                                    name: "user",
                                  },
                                },
                              ],
                            },
                          },
                          updatedBy: {
                            name: "George Clooney",
                            obfuscatedId: "abc123",
                            metadata: {
                              type: "FULL_TIME",
                              title: "Actor",
                              department: "Movies",
                              email: "george@example.com",
                              location: "Hollywood, CA",
                              phone: "6505551234",
                              photoUrl: "https://example.com/george.jpg",
                              startDate: new RFCDate("2000-01-23"),
                              datasourceProfile: [
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                              ],
                              querySuggestions: {
                                suggestions: [
                                  {
                                    query: "app:github type:pull author:mortimer",
                                    label: "Mortimer's PRs",
                                    datasource: "github",
                                  },
                                ],
                              },
                              inviteInfo: {
                                invites: [
                                  {},
                                  {},
                                  {},
                                ],
                              },
                              badges: [
                                {
                                  key: "deployment_name_new_hire",
                                  displayName: "New hire",
                                  iconConfig: {
                                    color: "#343CED",
                                    key: "person_icon",
                                    iconType: "GLYPH",
                                    name: "user",
                                  },
                                },
                              ],
                            },
                          },
                          collections: [
                            {
                              name: "<value>",
                              description: "perfectly flustered dimly",
                              addedRoles: [
                                {
                                  person: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      querySuggestions: {
                                        suggestions: [
                                          {
                                            query: "app:github type:pull author:mortimer",
                                            label: "Mortimer's PRs",
                                            datasource: "github",
                                          },
                                        ],
                                      },
                                      inviteInfo: {
                                        invites: [
                                          {},
                                          {},
                                          {},
                                        ],
                                      },
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  role: "ANSWER_MODERATOR",
                                },
                                {
                                  person: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      querySuggestions: {
                                        suggestions: [
                                          {
                                            query: "app:github type:pull author:mortimer",
                                            label: "Mortimer's PRs",
                                            datasource: "github",
                                          },
                                        ],
                                      },
                                      inviteInfo: {
                                        invites: [
                                          {},
                                          {},
                                          {},
                                        ],
                                      },
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  role: "ANSWER_MODERATOR",
                                },
                                {
                                  person: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      querySuggestions: {
                                        suggestions: [
                                          {
                                            query: "app:github type:pull author:mortimer",
                                            label: "Mortimer's PRs",
                                            datasource: "github",
                                          },
                                        ],
                                      },
                                      inviteInfo: {
                                        invites: [
                                          {},
                                          {},
                                          {},
                                        ],
                                      },
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  role: "ANSWER_MODERATOR",
                                },
                              ],
                              removedRoles: [
                                {
                                  person: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      querySuggestions: {
                                        suggestions: [
                                          {
                                            query: "app:github type:pull author:mortimer",
                                            label: "Mortimer's PRs",
                                            datasource: "github",
                                          },
                                        ],
                                      },
                                      inviteInfo: {
                                        invites: [
                                          {},
                                          {},
                                          {},
                                        ],
                                      },
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  role: "VERIFIER",
                                },
                              ],
                              audienceFilters: [
                                {
                                  fieldName: "type",
                                  values: [
                                    {
                                      value: "Spreadsheet",
                                      relationType: "EQUALS",
                                    },
                                    {
                                      value: "Presentation",
                                      relationType: "EQUALS",
                                    },
                                  ],
                                },
                              ],
                              id: 83242,
                              creator: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  querySuggestions: {
                                    suggestions: [
                                      {
                                        query: "app:github type:pull author:mortimer",
                                        label: "Mortimer's PRs",
                                        datasource: "github",
                                      },
                                    ],
                                  },
                                  inviteInfo: {
                                    invites: [
                                      {},
                                      {},
                                      {},
                                    ],
                                  },
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                              updatedBy: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  querySuggestions: {
                                    suggestions: [
                                      {
                                        query: "app:github type:pull author:mortimer",
                                        label: "Mortimer's PRs",
                                        datasource: "github",
                                      },
                                    ],
                                  },
                                  inviteInfo: {
                                    invites: [
                                      {},
                                      {},
                                      {},
                                    ],
                                  },
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                              items: [
                                {
                                  collectionId: 420359,
                                  createdBy: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      querySuggestions: {
                                        suggestions: [
                                          {
                                            query: "app:github type:pull author:mortimer",
                                            label: "Mortimer's PRs",
                                            datasource: "github",
                                          },
                                        ],
                                      },
                                      inviteInfo: {
                                        invites: [
                                          {},
                                          {},
                                          {},
                                        ],
                                      },
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  shortcut: {
                                    inputAlias: "<value>",
                                    createdBy: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    updatedBy: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    roles: [
                                      {
                                        person: {
                                          name: "George Clooney",
                                          obfuscatedId: "abc123",
                                          metadata: {
                                            type: "FULL_TIME",
                                            title: "Actor",
                                            department: "Movies",
                                            email: "george@example.com",
                                            location: "Hollywood, CA",
                                            phone: "6505551234",
                                            photoUrl: "https://example.com/george.jpg",
                                            startDate: new RFCDate("2000-01-23"),
                                            datasourceProfile: [
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                            ],
                                            querySuggestions: {
                                              suggestions: [
                                                {
                                                  query: "app:github type:pull author:mortimer",
                                                  label: "Mortimer's PRs",
                                                  datasource: "github",
                                                },
                                              ],
                                            },
                                            inviteInfo: {
                                              invites: [
                                                {},
                                                {},
                                                {},
                                              ],
                                            },
                                            badges: [
                                              {
                                                key: "deployment_name_new_hire",
                                                displayName: "New hire",
                                                iconConfig: {
                                                  color: "#343CED",
                                                  key: "person_icon",
                                                  iconType: "GLYPH",
                                                  name: "user",
                                                },
                                              },
                                            ],
                                          },
                                        },
                                        role: "ANSWER_MODERATOR",
                                      },
                                      {
                                        person: {
                                          name: "George Clooney",
                                          obfuscatedId: "abc123",
                                          metadata: {
                                            type: "FULL_TIME",
                                            title: "Actor",
                                            department: "Movies",
                                            email: "george@example.com",
                                            location: "Hollywood, CA",
                                            phone: "6505551234",
                                            photoUrl: "https://example.com/george.jpg",
                                            startDate: new RFCDate("2000-01-23"),
                                            datasourceProfile: [
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                            ],
                                            querySuggestions: {
                                              suggestions: [
                                                {
                                                  query: "app:github type:pull author:mortimer",
                                                  label: "Mortimer's PRs",
                                                  datasource: "github",
                                                },
                                              ],
                                            },
                                            inviteInfo: {
                                              invites: [
                                                {},
                                                {},
                                                {},
                                              ],
                                            },
                                            badges: [
                                              {
                                                key: "deployment_name_new_hire",
                                                displayName: "New hire",
                                                iconConfig: {
                                                  color: "#343CED",
                                                  key: "person_icon",
                                                  iconType: "GLYPH",
                                                  name: "user",
                                                },
                                              },
                                            ],
                                          },
                                        },
                                        role: "ANSWER_MODERATOR",
                                      },
                                    ],
                                  },
                                  itemType: "COLLECTION",
                                },
                                {
                                  collectionId: 420359,
                                  createdBy: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      querySuggestions: {
                                        suggestions: [
                                          {
                                            query: "app:github type:pull author:mortimer",
                                            label: "Mortimer's PRs",
                                            datasource: "github",
                                          },
                                        ],
                                      },
                                      inviteInfo: {
                                        invites: [
                                          {},
                                          {},
                                          {},
                                        ],
                                      },
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  shortcut: {
                                    inputAlias: "<value>",
                                    createdBy: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    updatedBy: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    roles: [
                                      {
                                        person: {
                                          name: "George Clooney",
                                          obfuscatedId: "abc123",
                                          metadata: {
                                            type: "FULL_TIME",
                                            title: "Actor",
                                            department: "Movies",
                                            email: "george@example.com",
                                            location: "Hollywood, CA",
                                            phone: "6505551234",
                                            photoUrl: "https://example.com/george.jpg",
                                            startDate: new RFCDate("2000-01-23"),
                                            datasourceProfile: [
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                            ],
                                            querySuggestions: {
                                              suggestions: [
                                                {
                                                  query: "app:github type:pull author:mortimer",
                                                  label: "Mortimer's PRs",
                                                  datasource: "github",
                                                },
                                              ],
                                            },
                                            inviteInfo: {
                                              invites: [
                                                {},
                                                {},
                                                {},
                                              ],
                                            },
                                            badges: [
                                              {
                                                key: "deployment_name_new_hire",
                                                displayName: "New hire",
                                                iconConfig: {
                                                  color: "#343CED",
                                                  key: "person_icon",
                                                  iconType: "GLYPH",
                                                  name: "user",
                                                },
                                              },
                                            ],
                                          },
                                        },
                                        role: "ANSWER_MODERATOR",
                                      },
                                      {
                                        person: {
                                          name: "George Clooney",
                                          obfuscatedId: "abc123",
                                          metadata: {
                                            type: "FULL_TIME",
                                            title: "Actor",
                                            department: "Movies",
                                            email: "george@example.com",
                                            location: "Hollywood, CA",
                                            phone: "6505551234",
                                            photoUrl: "https://example.com/george.jpg",
                                            startDate: new RFCDate("2000-01-23"),
                                            datasourceProfile: [
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                            ],
                                            querySuggestions: {
                                              suggestions: [
                                                {
                                                  query: "app:github type:pull author:mortimer",
                                                  label: "Mortimer's PRs",
                                                  datasource: "github",
                                                },
                                              ],
                                            },
                                            inviteInfo: {
                                              invites: [
                                                {},
                                                {},
                                                {},
                                              ],
                                            },
                                            badges: [
                                              {
                                                key: "deployment_name_new_hire",
                                                displayName: "New hire",
                                                iconConfig: {
                                                  color: "#343CED",
                                                  key: "person_icon",
                                                  iconType: "GLYPH",
                                                  name: "user",
                                                },
                                              },
                                            ],
                                          },
                                        },
                                        role: "ANSWER_MODERATOR",
                                      },
                                    ],
                                  },
                                  itemType: "COLLECTION",
                                },
                              ],
                            },
                          ],
                          interactions: {
                            reacts: [
                              {
                                reactors: [
                                  {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                  },
                                ],
                              },
                              {
                                reactors: [
                                  {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                  },
                                ],
                              },
                            ],
                            shares: [
                              {
                                numDaysAgo: 582012,
                                sharer: {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                  metadata: {
                                    type: "FULL_TIME",
                                    title: "Actor",
                                    department: "Movies",
                                    email: "george@example.com",
                                    location: "Hollywood, CA",
                                    phone: "6505551234",
                                    photoUrl: "https://example.com/george.jpg",
                                    startDate: new RFCDate("2000-01-23"),
                                    datasourceProfile: [
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                    ],
                                    querySuggestions: {
                                      suggestions: [
                                        {
                                          query: "app:github type:pull author:mortimer",
                                          label: "Mortimer's PRs",
                                          datasource: "github",
                                        },
                                      ],
                                    },
                                    inviteInfo: {
                                      invites: [
                                        {},
                                        {},
                                        {},
                                      ],
                                    },
                                    badges: [
                                      {
                                        key: "deployment_name_new_hire",
                                        displayName: "New hire",
                                        iconConfig: {
                                          color: "#343CED",
                                          key: "person_icon",
                                          iconType: "GLYPH",
                                          name: "user",
                                        },
                                      },
                                    ],
                                  },
                                },
                              },
                            ],
                          },
                          verification: {
                            state: "DEPRECATED",
                            metadata: {
                              lastVerifier: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  querySuggestions: {
                                    suggestions: [
                                      {
                                        query: "app:github type:pull author:mortimer",
                                        label: "Mortimer's PRs",
                                        datasource: "github",
                                      },
                                    ],
                                  },
                                  inviteInfo: {
                                    invites: [
                                      {},
                                      {},
                                      {},
                                    ],
                                  },
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                              reminders: [
                                {
                                  assignee: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      querySuggestions: {
                                        suggestions: [
                                          {
                                            query: "app:github type:pull author:mortimer",
                                            label: "Mortimer's PRs",
                                            datasource: "github",
                                          },
                                        ],
                                      },
                                      inviteInfo: {
                                        invites: [
                                          {},
                                          {},
                                          {},
                                        ],
                                      },
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  requestor: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      querySuggestions: {
                                        suggestions: [
                                          {
                                            query: "app:github type:pull author:mortimer",
                                            label: "Mortimer's PRs",
                                            datasource: "github",
                                          },
                                        ],
                                      },
                                      inviteInfo: {
                                        invites: [
                                          {},
                                          {},
                                          {},
                                        ],
                                      },
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  remindAt: 785622,
                                },
                                {
                                  assignee: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      querySuggestions: {
                                        suggestions: [
                                          {
                                            query: "app:github type:pull author:mortimer",
                                            label: "Mortimer's PRs",
                                            datasource: "github",
                                          },
                                        ],
                                      },
                                      inviteInfo: {
                                        invites: [
                                          {},
                                          {},
                                          {},
                                        ],
                                      },
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  requestor: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      querySuggestions: {
                                        suggestions: [
                                          {
                                            query: "app:github type:pull author:mortimer",
                                            label: "Mortimer's PRs",
                                            datasource: "github",
                                          },
                                        ],
                                      },
                                      inviteInfo: {
                                        invites: [
                                          {},
                                          {},
                                          {},
                                        ],
                                      },
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  remindAt: 785622,
                                },
                                {
                                  assignee: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      querySuggestions: {
                                        suggestions: [
                                          {
                                            query: "app:github type:pull author:mortimer",
                                            label: "Mortimer's PRs",
                                            datasource: "github",
                                          },
                                        ],
                                      },
                                      inviteInfo: {
                                        invites: [
                                          {},
                                          {},
                                          {},
                                        ],
                                      },
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  requestor: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      querySuggestions: {
                                        suggestions: [
                                          {
                                            query: "app:github type:pull author:mortimer",
                                            label: "Mortimer's PRs",
                                            datasource: "github",
                                          },
                                        ],
                                      },
                                      inviteInfo: {
                                        invites: [
                                          {},
                                          {},
                                          {},
                                        ],
                                      },
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  remindAt: 785622,
                                },
                              ],
                              lastReminder: {
                                assignee: {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                  metadata: {
                                    type: "FULL_TIME",
                                    title: "Actor",
                                    department: "Movies",
                                    email: "george@example.com",
                                    location: "Hollywood, CA",
                                    phone: "6505551234",
                                    photoUrl: "https://example.com/george.jpg",
                                    startDate: new RFCDate("2000-01-23"),
                                    datasourceProfile: [
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                    ],
                                    querySuggestions: {
                                      suggestions: [
                                        {
                                          query: "app:github type:pull author:mortimer",
                                          label: "Mortimer's PRs",
                                          datasource: "github",
                                        },
                                      ],
                                    },
                                    inviteInfo: {
                                      invites: [
                                        {},
                                        {},
                                        {},
                                      ],
                                    },
                                    badges: [
                                      {
                                        key: "deployment_name_new_hire",
                                        displayName: "New hire",
                                        iconConfig: {
                                          color: "#343CED",
                                          key: "person_icon",
                                          iconType: "GLYPH",
                                          name: "user",
                                        },
                                      },
                                    ],
                                  },
                                },
                                requestor: {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                  metadata: {
                                    type: "FULL_TIME",
                                    title: "Actor",
                                    department: "Movies",
                                    email: "george@example.com",
                                    location: "Hollywood, CA",
                                    phone: "6505551234",
                                    photoUrl: "https://example.com/george.jpg",
                                    startDate: new RFCDate("2000-01-23"),
                                    datasourceProfile: [
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                    ],
                                    querySuggestions: {
                                      suggestions: [
                                        {
                                          query: "app:github type:pull author:mortimer",
                                          label: "Mortimer's PRs",
                                          datasource: "github",
                                        },
                                      ],
                                    },
                                    inviteInfo: {
                                      invites: [
                                        {},
                                        {},
                                        {},
                                      ],
                                    },
                                    badges: [
                                      {
                                        key: "deployment_name_new_hire",
                                        displayName: "New hire",
                                        iconConfig: {
                                          color: "#343CED",
                                          key: "person_icon",
                                          iconType: "GLYPH",
                                          name: "user",
                                        },
                                      },
                                    ],
                                  },
                                },
                                remindAt: 269943,
                              },
                              candidateVerifiers: [
                                {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                },
                              ],
                            },
                          },
                          shortcuts: [
                            {
                              inputAlias: "<value>",
                              createdBy: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  querySuggestions: {
                                    suggestions: [
                                      {
                                        query: "app:github type:pull author:mortimer",
                                        label: "Mortimer's PRs",
                                        datasource: "github",
                                      },
                                    ],
                                  },
                                  inviteInfo: {
                                    invites: [
                                      {},
                                      {},
                                      {},
                                    ],
                                  },
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                              updatedBy: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  querySuggestions: {
                                    suggestions: [
                                      {
                                        query: "app:github type:pull author:mortimer",
                                        label: "Mortimer's PRs",
                                        datasource: "github",
                                      },
                                    ],
                                  },
                                  inviteInfo: {
                                    invites: [
                                      {},
                                      {},
                                      {},
                                    ],
                                  },
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                            },
                          ],
                          customData: {
                            "someCustomField": {},
                          },
                          contactPerson: {
                            name: "George Clooney",
                            obfuscatedId: "abc123",
                            metadata: {
                              type: "FULL_TIME",
                              title: "Actor",
                              department: "Movies",
                              email: "george@example.com",
                              location: "Hollywood, CA",
                              phone: "6505551234",
                              photoUrl: "https://example.com/george.jpg",
                              startDate: new RFCDate("2000-01-23"),
                              datasourceProfile: [
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                              ],
                              querySuggestions: {
                                suggestions: [
                                  {
                                    query: "app:github type:pull author:mortimer",
                                    label: "Mortimer's PRs",
                                    datasource: "github",
                                  },
                                ],
                              },
                              inviteInfo: {
                                invites: [
                                  {},
                                  {},
                                  {},
                                ],
                              },
                              badges: [
                                {
                                  key: "deployment_name_new_hire",
                                  displayName: "New hire",
                                  iconConfig: {
                                    color: "#343CED",
                                    key: "person_icon",
                                    iconType: "GLYPH",
                                    name: "user",
                                  },
                                },
                              ],
                            },
                          },
                        },
                      },
                      text: "Because its wavelengths are shorter, blue light is more strongly scattered than the longer-wavelength lights, red or green. Hence the result that when looking at the sky away from the direct incident sunlight, the human eye perceives the sky to be blue.",
                      structuredResult: {
                        document: {
                          metadata: {
                            datasource: "datasource",
                            objectType: "Feature Request",
                            container: "container",
                            parentId: "JIRA_EN-1337",
                            mimeType: "mimeType",
                            documentId: "documentId",
                            createTime: new Date("2000-01-23T04:56:07.000Z"),
                            updateTime: new Date("2000-01-23T04:56:07.000Z"),
                            author: {
                              name: "George Clooney",
                              obfuscatedId: "abc123",
                              relatedDocuments: [
                                {
                                  querySuggestion: {
                                    query: "app:github type:pull author:mortimer",
                                    searchProviderInfo: {
                                      name: "Google",
                                      searchLinkUrlTemplate: "https://www.google.com/search?q={query}&hl=en",
                                    },
                                    label: "Mortimer's PRs",
                                    datasource: "github",
                                    requestOptions: {
                                      datasourceFilter: "JIRA",
                                      datasourcesFilter: [
                                        "JIRA",
                                      ],
                                      queryOverridesFacetFilters: true,
                                      facetFilters: [
                                        {
                                          fieldName: "type",
                                          values: [
                                            {
                                              value: "Spreadsheet",
                                              relationType: "EQUALS",
                                            },
                                            {
                                              value: "Presentation",
                                              relationType: "EQUALS",
                                            },
                                          ],
                                        },
                                      ],
                                      facetFilterSets: [
                                        {
                                          filters: [
                                            {
                                              fieldName: "type",
                                              values: [
                                                {
                                                  value: "Spreadsheet",
                                                  relationType: "EQUALS",
                                                },
                                                {
                                                  value: "Presentation",
                                                  relationType: "EQUALS",
                                                },
                                              ],
                                            },
                                          ],
                                        },
                                        {
                                          filters: [
                                            {
                                              fieldName: "type",
                                              values: [
                                                {
                                                  value: "Spreadsheet",
                                                  relationType: "EQUALS",
                                                },
                                                {
                                                  value: "Presentation",
                                                  relationType: "EQUALS",
                                                },
                                              ],
                                            },
                                          ],
                                        },
                                      ],
                                      facetBucketSize: 843281,
                                      authTokens: [
                                        {
                                          accessToken: "123abc",
                                          datasource: "gmail",
                                          scope: "email profile https://www.googleapis.com/auth/gmail.readonly",
                                          tokenType: "Bearer",
                                          authUser: "1",
                                        },
                                      ],
                                    },
                                    ranges: [
                                      {
                                        startIndex: 925801,
                                      },
                                      {
                                        startIndex: 925801,
                                      },
                                      {
                                        startIndex: 925801,
                                      },
                                    ],
                                    inputDetails: {
                                      hasCopyPaste: true,
                                    },
                                  },
                                  results: [
                                    {
                                      title: "title",
                                      url: "https://example.com/foo/bar",
                                      nativeAppUrl: "slack://foo/bar",
                                      snippets: [
                                        {
                                          mimeType: "mimeType",
                                          snippet: "snippet",
                                        },
                                      ],
                                    },
                                  ],
                                },
                                {
                                  querySuggestion: {
                                    query: "app:github type:pull author:mortimer",
                                    searchProviderInfo: {
                                      name: "Google",
                                      searchLinkUrlTemplate: "https://www.google.com/search?q={query}&hl=en",
                                    },
                                    label: "Mortimer's PRs",
                                    datasource: "github",
                                    requestOptions: {
                                      datasourceFilter: "JIRA",
                                      datasourcesFilter: [
                                        "JIRA",
                                      ],
                                      queryOverridesFacetFilters: true,
                                      facetFilters: [
                                        {
                                          fieldName: "type",
                                          values: [
                                            {
                                              value: "Spreadsheet",
                                              relationType: "EQUALS",
                                            },
                                            {
                                              value: "Presentation",
                                              relationType: "EQUALS",
                                            },
                                          ],
                                        },
                                      ],
                                      facetFilterSets: [
                                        {
                                          filters: [
                                            {
                                              fieldName: "type",
                                              values: [
                                                {
                                                  value: "Spreadsheet",
                                                  relationType: "EQUALS",
                                                },
                                                {
                                                  value: "Presentation",
                                                  relationType: "EQUALS",
                                                },
                                              ],
                                            },
                                          ],
                                        },
                                        {
                                          filters: [
                                            {
                                              fieldName: "type",
                                              values: [
                                                {
                                                  value: "Spreadsheet",
                                                  relationType: "EQUALS",
                                                },
                                                {
                                                  value: "Presentation",
                                                  relationType: "EQUALS",
                                                },
                                              ],
                                            },
                                          ],
                                        },
                                      ],
                                      facetBucketSize: 843281,
                                      authTokens: [
                                        {
                                          accessToken: "123abc",
                                          datasource: "gmail",
                                          scope: "email profile https://www.googleapis.com/auth/gmail.readonly",
                                          tokenType: "Bearer",
                                          authUser: "1",
                                        },
                                      ],
                                    },
                                    ranges: [
                                      {
                                        startIndex: 925801,
                                      },
                                      {
                                        startIndex: 925801,
                                      },
                                      {
                                        startIndex: 925801,
                                      },
                                    ],
                                    inputDetails: {
                                      hasCopyPaste: true,
                                    },
                                  },
                                  results: [
                                    {
                                      title: "title",
                                      url: "https://example.com/foo/bar",
                                      nativeAppUrl: "slack://foo/bar",
                                      snippets: [
                                        {
                                          mimeType: "mimeType",
                                          snippet: "snippet",
                                        },
                                      ],
                                    },
                                  ],
                                },
                                {
                                  querySuggestion: {
                                    query: "app:github type:pull author:mortimer",
                                    searchProviderInfo: {
                                      name: "Google",
                                      searchLinkUrlTemplate: "https://www.google.com/search?q={query}&hl=en",
                                    },
                                    label: "Mortimer's PRs",
                                    datasource: "github",
                                    requestOptions: {
                                      datasourceFilter: "JIRA",
                                      datasourcesFilter: [
                                        "JIRA",
                                      ],
                                      queryOverridesFacetFilters: true,
                                      facetFilters: [
                                        {
                                          fieldName: "type",
                                          values: [
                                            {
                                              value: "Spreadsheet",
                                              relationType: "EQUALS",
                                            },
                                            {
                                              value: "Presentation",
                                              relationType: "EQUALS",
                                            },
                                          ],
                                        },
                                      ],
                                      facetFilterSets: [
                                        {
                                          filters: [
                                            {
                                              fieldName: "type",
                                              values: [
                                                {
                                                  value: "Spreadsheet",
                                                  relationType: "EQUALS",
                                                },
                                                {
                                                  value: "Presentation",
                                                  relationType: "EQUALS",
                                                },
                                              ],
                                            },
                                          ],
                                        },
                                        {
                                          filters: [
                                            {
                                              fieldName: "type",
                                              values: [
                                                {
                                                  value: "Spreadsheet",
                                                  relationType: "EQUALS",
                                                },
                                                {
                                                  value: "Presentation",
                                                  relationType: "EQUALS",
                                                },
                                              ],
                                            },
                                          ],
                                        },
                                      ],
                                      facetBucketSize: 843281,
                                      authTokens: [
                                        {
                                          accessToken: "123abc",
                                          datasource: "gmail",
                                          scope: "email profile https://www.googleapis.com/auth/gmail.readonly",
                                          tokenType: "Bearer",
                                          authUser: "1",
                                        },
                                      ],
                                    },
                                    ranges: [
                                      {
                                        startIndex: 925801,
                                      },
                                      {
                                        startIndex: 925801,
                                      },
                                      {
                                        startIndex: 925801,
                                      },
                                    ],
                                    inputDetails: {
                                      hasCopyPaste: true,
                                    },
                                  },
                                  results: [
                                    {
                                      title: "title",
                                      url: "https://example.com/foo/bar",
                                      nativeAppUrl: "slack://foo/bar",
                                      snippets: [
                                        {
                                          mimeType: "mimeType",
                                          snippet: "snippet",
                                        },
                                      ],
                                    },
                                  ],
                                },
                              ],
                              metadata: {
                                type: "FULL_TIME",
                                title: "Actor",
                                department: "Movies",
                                email: "george@example.com",
                                location: "Hollywood, CA",
                                phone: "6505551234",
                                photoUrl: "https://example.com/george.jpg",
                                startDate: new RFCDate("2000-01-23"),
                                datasourceProfile: [
                                  {
                                    datasource: "github",
                                    handle: "<value>",
                                  },
                                  {
                                    datasource: "github",
                                    handle: "<value>",
                                  },
                                  {
                                    datasource: "github",
                                    handle: "<value>",
                                  },
                                ],
                                querySuggestions: {
                                  suggestions: [
                                    {
                                      query: "app:github type:pull author:mortimer",
                                      label: "Mortimer's PRs",
                                      datasource: "github",
                                    },
                                  ],
                                },
                                inviteInfo: {
                                  invites: [
                                    {},
                                    {},
                                    {},
                                  ],
                                },
                                customFields: [
                                  {
                                    label: "<value>",
                                    values: [
                                      {},
                                      {},
                                    ],
                                  },
                                  {
                                    label: "<value>",
                                    values: [
                                      {},
                                      {},
                                    ],
                                  },
                                  {
                                    label: "<value>",
                                    values: [
                                      {},
                                      {},
                                    ],
                                  },
                                ],
                                badges: [
                                  {
                                    key: "deployment_name_new_hire",
                                    displayName: "New hire",
                                    iconConfig: {
                                      color: "#343CED",
                                      key: "person_icon",
                                      iconType: "GLYPH",
                                      name: "user",
                                    },
                                  },
                                ],
                              },
                            },
                            owner: {
                              name: "George Clooney",
                              obfuscatedId: "abc123",
                              metadata: {
                                type: "FULL_TIME",
                                title: "Actor",
                                department: "Movies",
                                email: "george@example.com",
                                location: "Hollywood, CA",
                                phone: "6505551234",
                                photoUrl: "https://example.com/george.jpg",
                                startDate: new RFCDate("2000-01-23"),
                                datasourceProfile: [
                                  {
                                    datasource: "github",
                                    handle: "<value>",
                                  },
                                  {
                                    datasource: "github",
                                    handle: "<value>",
                                  },
                                  {
                                    datasource: "github",
                                    handle: "<value>",
                                  },
                                ],
                                querySuggestions: {
                                  suggestions: [
                                    {
                                      query: "app:github type:pull author:mortimer",
                                      label: "Mortimer's PRs",
                                      datasource: "github",
                                    },
                                  ],
                                },
                                inviteInfo: {
                                  invites: [
                                    {},
                                    {},
                                    {},
                                  ],
                                },
                                badges: [
                                  {
                                    key: "deployment_name_new_hire",
                                    displayName: "New hire",
                                    iconConfig: {
                                      color: "#343CED",
                                      key: "person_icon",
                                      iconType: "GLYPH",
                                      name: "user",
                                    },
                                  },
                                ],
                              },
                            },
                            mentionedPeople: [
                              {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                              },
                            ],
                            components: [
                              "Backend",
                              "Networking",
                            ],
                            status: "[\"Done\"]",
                            pins: [
                              {
                                audienceFilters: [
                                  {
                                    fieldName: "type",
                                    values: [
                                      {
                                        value: "Spreadsheet",
                                        relationType: "EQUALS",
                                      },
                                      {
                                        value: "Presentation",
                                        relationType: "EQUALS",
                                      },
                                    ],
                                  },
                                ],
                                documentId: "<id>",
                                attribution: {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                  metadata: {
                                    type: "FULL_TIME",
                                    title: "Actor",
                                    department: "Movies",
                                    email: "george@example.com",
                                    location: "Hollywood, CA",
                                    phone: "6505551234",
                                    photoUrl: "https://example.com/george.jpg",
                                    startDate: new RFCDate("2000-01-23"),
                                    datasourceProfile: [
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                    ],
                                    querySuggestions: {
                                      suggestions: [
                                        {
                                          query: "app:github type:pull author:mortimer",
                                          label: "Mortimer's PRs",
                                          datasource: "github",
                                        },
                                      ],
                                    },
                                    inviteInfo: {
                                      invites: [
                                        {},
                                        {},
                                        {},
                                      ],
                                    },
                                    badges: [
                                      {
                                        key: "deployment_name_new_hire",
                                        displayName: "New hire",
                                        iconConfig: {
                                          color: "#343CED",
                                          key: "person_icon",
                                          iconType: "GLYPH",
                                          name: "user",
                                        },
                                      },
                                    ],
                                  },
                                },
                                updatedBy: {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                  metadata: {
                                    type: "FULL_TIME",
                                    title: "Actor",
                                    department: "Movies",
                                    email: "george@example.com",
                                    location: "Hollywood, CA",
                                    phone: "6505551234",
                                    photoUrl: "https://example.com/george.jpg",
                                    startDate: new RFCDate("2000-01-23"),
                                    datasourceProfile: [
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                    ],
                                    querySuggestions: {
                                      suggestions: [
                                        {
                                          query: "app:github type:pull author:mortimer",
                                          label: "Mortimer's PRs",
                                          datasource: "github",
                                        },
                                      ],
                                    },
                                    inviteInfo: {
                                      invites: [
                                        {},
                                        {},
                                        {},
                                      ],
                                    },
                                    badges: [
                                      {
                                        key: "deployment_name_new_hire",
                                        displayName: "New hire",
                                        iconConfig: {
                                          color: "#343CED",
                                          key: "person_icon",
                                          iconType: "GLYPH",
                                          name: "user",
                                        },
                                      },
                                    ],
                                  },
                                },
                              },
                              {
                                audienceFilters: [
                                  {
                                    fieldName: "type",
                                    values: [
                                      {
                                        value: "Spreadsheet",
                                        relationType: "EQUALS",
                                      },
                                      {
                                        value: "Presentation",
                                        relationType: "EQUALS",
                                      },
                                    ],
                                  },
                                ],
                                documentId: "<id>",
                                attribution: {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                  metadata: {
                                    type: "FULL_TIME",
                                    title: "Actor",
                                    department: "Movies",
                                    email: "george@example.com",
                                    location: "Hollywood, CA",
                                    phone: "6505551234",
                                    photoUrl: "https://example.com/george.jpg",
                                    startDate: new RFCDate("2000-01-23"),
                                    datasourceProfile: [
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                    ],
                                    querySuggestions: {
                                      suggestions: [
                                        {
                                          query: "app:github type:pull author:mortimer",
                                          label: "Mortimer's PRs",
                                          datasource: "github",
                                        },
                                      ],
                                    },
                                    inviteInfo: {
                                      invites: [
                                        {},
                                        {},
                                        {},
                                      ],
                                    },
                                    badges: [
                                      {
                                        key: "deployment_name_new_hire",
                                        displayName: "New hire",
                                        iconConfig: {
                                          color: "#343CED",
                                          key: "person_icon",
                                          iconType: "GLYPH",
                                          name: "user",
                                        },
                                      },
                                    ],
                                  },
                                },
                                updatedBy: {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                  metadata: {
                                    type: "FULL_TIME",
                                    title: "Actor",
                                    department: "Movies",
                                    email: "george@example.com",
                                    location: "Hollywood, CA",
                                    phone: "6505551234",
                                    photoUrl: "https://example.com/george.jpg",
                                    startDate: new RFCDate("2000-01-23"),
                                    datasourceProfile: [
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                    ],
                                    querySuggestions: {
                                      suggestions: [
                                        {
                                          query: "app:github type:pull author:mortimer",
                                          label: "Mortimer's PRs",
                                          datasource: "github",
                                        },
                                      ],
                                    },
                                    inviteInfo: {
                                      invites: [
                                        {},
                                        {},
                                        {},
                                      ],
                                    },
                                    badges: [
                                      {
                                        key: "deployment_name_new_hire",
                                        displayName: "New hire",
                                        iconConfig: {
                                          color: "#343CED",
                                          key: "person_icon",
                                          iconType: "GLYPH",
                                          name: "user",
                                        },
                                      },
                                    ],
                                  },
                                },
                              },
                            ],
                            assignedTo: {
                              name: "George Clooney",
                              obfuscatedId: "abc123",
                              metadata: {
                                type: "FULL_TIME",
                                title: "Actor",
                                department: "Movies",
                                email: "george@example.com",
                                location: "Hollywood, CA",
                                phone: "6505551234",
                                photoUrl: "https://example.com/george.jpg",
                                startDate: new RFCDate("2000-01-23"),
                                datasourceProfile: [
                                  {
                                    datasource: "github",
                                    handle: "<value>",
                                  },
                                  {
                                    datasource: "github",
                                    handle: "<value>",
                                  },
                                  {
                                    datasource: "github",
                                    handle: "<value>",
                                  },
                                ],
                                querySuggestions: {
                                  suggestions: [
                                    {
                                      query: "app:github type:pull author:mortimer",
                                      label: "Mortimer's PRs",
                                      datasource: "github",
                                    },
                                  ],
                                },
                                inviteInfo: {
                                  invites: [
                                    {},
                                    {},
                                    {},
                                  ],
                                },
                                badges: [
                                  {
                                    key: "deployment_name_new_hire",
                                    displayName: "New hire",
                                    iconConfig: {
                                      color: "#343CED",
                                      key: "person_icon",
                                      iconType: "GLYPH",
                                      name: "user",
                                    },
                                  },
                                ],
                              },
                            },
                            updatedBy: {
                              name: "George Clooney",
                              obfuscatedId: "abc123",
                              metadata: {
                                type: "FULL_TIME",
                                title: "Actor",
                                department: "Movies",
                                email: "george@example.com",
                                location: "Hollywood, CA",
                                phone: "6505551234",
                                photoUrl: "https://example.com/george.jpg",
                                startDate: new RFCDate("2000-01-23"),
                                datasourceProfile: [
                                  {
                                    datasource: "github",
                                    handle: "<value>",
                                  },
                                  {
                                    datasource: "github",
                                    handle: "<value>",
                                  },
                                  {
                                    datasource: "github",
                                    handle: "<value>",
                                  },
                                ],
                                querySuggestions: {
                                  suggestions: [
                                    {
                                      query: "app:github type:pull author:mortimer",
                                      label: "Mortimer's PRs",
                                      datasource: "github",
                                    },
                                  ],
                                },
                                inviteInfo: {
                                  invites: [
                                    {},
                                    {},
                                    {},
                                  ],
                                },
                                badges: [
                                  {
                                    key: "deployment_name_new_hire",
                                    displayName: "New hire",
                                    iconConfig: {
                                      color: "#343CED",
                                      key: "person_icon",
                                      iconType: "GLYPH",
                                      name: "user",
                                    },
                                  },
                                ],
                              },
                            },
                            collections: [
                              {
                                name: "<value>",
                                description: "perfectly flustered dimly",
                                addedRoles: [
                                  {
                                    person: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    role: "ANSWER_MODERATOR",
                                  },
                                  {
                                    person: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    role: "ANSWER_MODERATOR",
                                  },
                                  {
                                    person: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    role: "ANSWER_MODERATOR",
                                  },
                                ],
                                removedRoles: [
                                  {
                                    person: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    role: "VERIFIER",
                                  },
                                ],
                                audienceFilters: [
                                  {
                                    fieldName: "type",
                                    values: [
                                      {
                                        value: "Spreadsheet",
                                        relationType: "EQUALS",
                                      },
                                      {
                                        value: "Presentation",
                                        relationType: "EQUALS",
                                      },
                                    ],
                                  },
                                ],
                                id: 83242,
                                creator: {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                  metadata: {
                                    type: "FULL_TIME",
                                    title: "Actor",
                                    department: "Movies",
                                    email: "george@example.com",
                                    location: "Hollywood, CA",
                                    phone: "6505551234",
                                    photoUrl: "https://example.com/george.jpg",
                                    startDate: new RFCDate("2000-01-23"),
                                    datasourceProfile: [
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                    ],
                                    querySuggestions: {
                                      suggestions: [
                                        {
                                          query: "app:github type:pull author:mortimer",
                                          label: "Mortimer's PRs",
                                          datasource: "github",
                                        },
                                      ],
                                    },
                                    inviteInfo: {
                                      invites: [
                                        {},
                                        {},
                                        {},
                                      ],
                                    },
                                    badges: [
                                      {
                                        key: "deployment_name_new_hire",
                                        displayName: "New hire",
                                        iconConfig: {
                                          color: "#343CED",
                                          key: "person_icon",
                                          iconType: "GLYPH",
                                          name: "user",
                                        },
                                      },
                                    ],
                                  },
                                },
                                updatedBy: {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                  metadata: {
                                    type: "FULL_TIME",
                                    title: "Actor",
                                    department: "Movies",
                                    email: "george@example.com",
                                    location: "Hollywood, CA",
                                    phone: "6505551234",
                                    photoUrl: "https://example.com/george.jpg",
                                    startDate: new RFCDate("2000-01-23"),
                                    datasourceProfile: [
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                    ],
                                    querySuggestions: {
                                      suggestions: [
                                        {
                                          query: "app:github type:pull author:mortimer",
                                          label: "Mortimer's PRs",
                                          datasource: "github",
                                        },
                                      ],
                                    },
                                    inviteInfo: {
                                      invites: [
                                        {},
                                        {},
                                        {},
                                      ],
                                    },
                                    badges: [
                                      {
                                        key: "deployment_name_new_hire",
                                        displayName: "New hire",
                                        iconConfig: {
                                          color: "#343CED",
                                          key: "person_icon",
                                          iconType: "GLYPH",
                                          name: "user",
                                        },
                                      },
                                    ],
                                  },
                                },
                                items: [
                                  {
                                    collectionId: 420359,
                                    createdBy: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    shortcut: {
                                      inputAlias: "<value>",
                                      createdBy: {
                                        name: "George Clooney",
                                        obfuscatedId: "abc123",
                                        metadata: {
                                          type: "FULL_TIME",
                                          title: "Actor",
                                          department: "Movies",
                                          email: "george@example.com",
                                          location: "Hollywood, CA",
                                          phone: "6505551234",
                                          photoUrl: "https://example.com/george.jpg",
                                          startDate: new RFCDate("2000-01-23"),
                                          datasourceProfile: [
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                          ],
                                          querySuggestions: {
                                            suggestions: [
                                              {
                                                query: "app:github type:pull author:mortimer",
                                                label: "Mortimer's PRs",
                                                datasource: "github",
                                              },
                                            ],
                                          },
                                          inviteInfo: {
                                            invites: [
                                              {},
                                              {},
                                              {},
                                            ],
                                          },
                                          badges: [
                                            {
                                              key: "deployment_name_new_hire",
                                              displayName: "New hire",
                                              iconConfig: {
                                                color: "#343CED",
                                                key: "person_icon",
                                                iconType: "GLYPH",
                                                name: "user",
                                              },
                                            },
                                          ],
                                        },
                                      },
                                      updatedBy: {
                                        name: "George Clooney",
                                        obfuscatedId: "abc123",
                                        metadata: {
                                          type: "FULL_TIME",
                                          title: "Actor",
                                          department: "Movies",
                                          email: "george@example.com",
                                          location: "Hollywood, CA",
                                          phone: "6505551234",
                                          photoUrl: "https://example.com/george.jpg",
                                          startDate: new RFCDate("2000-01-23"),
                                          datasourceProfile: [
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                          ],
                                          querySuggestions: {
                                            suggestions: [
                                              {
                                                query: "app:github type:pull author:mortimer",
                                                label: "Mortimer's PRs",
                                                datasource: "github",
                                              },
                                            ],
                                          },
                                          inviteInfo: {
                                            invites: [
                                              {},
                                              {},
                                              {},
                                            ],
                                          },
                                          badges: [
                                            {
                                              key: "deployment_name_new_hire",
                                              displayName: "New hire",
                                              iconConfig: {
                                                color: "#343CED",
                                                key: "person_icon",
                                                iconType: "GLYPH",
                                                name: "user",
                                              },
                                            },
                                          ],
                                        },
                                      },
                                      roles: [
                                        {
                                          person: {
                                            name: "George Clooney",
                                            obfuscatedId: "abc123",
                                            metadata: {
                                              type: "FULL_TIME",
                                              title: "Actor",
                                              department: "Movies",
                                              email: "george@example.com",
                                              location: "Hollywood, CA",
                                              phone: "6505551234",
                                              photoUrl: "https://example.com/george.jpg",
                                              startDate: new RFCDate("2000-01-23"),
                                              datasourceProfile: [
                                                {
                                                  datasource: "github",
                                                  handle: "<value>",
                                                },
                                                {
                                                  datasource: "github",
                                                  handle: "<value>",
                                                },
                                              ],
                                              querySuggestions: {
                                                suggestions: [
                                                  {
                                                    query: "app:github type:pull author:mortimer",
                                                    label: "Mortimer's PRs",
                                                    datasource: "github",
                                                  },
                                                ],
                                              },
                                              inviteInfo: {
                                                invites: [
                                                  {},
                                                  {},
                                                  {},
                                                ],
                                              },
                                              badges: [
                                                {
                                                  key: "deployment_name_new_hire",
                                                  displayName: "New hire",
                                                  iconConfig: {
                                                    color: "#343CED",
                                                    key: "person_icon",
                                                    iconType: "GLYPH",
                                                    name: "user",
                                                  },
                                                },
                                              ],
                                            },
                                          },
                                          role: "ANSWER_MODERATOR",
                                        },
                                        {
                                          person: {
                                            name: "George Clooney",
                                            obfuscatedId: "abc123",
                                            metadata: {
                                              type: "FULL_TIME",
                                              title: "Actor",
                                              department: "Movies",
                                              email: "george@example.com",
                                              location: "Hollywood, CA",
                                              phone: "6505551234",
                                              photoUrl: "https://example.com/george.jpg",
                                              startDate: new RFCDate("2000-01-23"),
                                              datasourceProfile: [
                                                {
                                                  datasource: "github",
                                                  handle: "<value>",
                                                },
                                                {
                                                  datasource: "github",
                                                  handle: "<value>",
                                                },
                                              ],
                                              querySuggestions: {
                                                suggestions: [
                                                  {
                                                    query: "app:github type:pull author:mortimer",
                                                    label: "Mortimer's PRs",
                                                    datasource: "github",
                                                  },
                                                ],
                                              },
                                              inviteInfo: {
                                                invites: [
                                                  {},
                                                  {},
                                                  {},
                                                ],
                                              },
                                              badges: [
                                                {
                                                  key: "deployment_name_new_hire",
                                                  displayName: "New hire",
                                                  iconConfig: {
                                                    color: "#343CED",
                                                    key: "person_icon",
                                                    iconType: "GLYPH",
                                                    name: "user",
                                                  },
                                                },
                                              ],
                                            },
                                          },
                                          role: "ANSWER_MODERATOR",
                                        },
                                      ],
                                    },
                                    itemType: "COLLECTION",
                                  },
                                  {
                                    collectionId: 420359,
                                    createdBy: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    shortcut: {
                                      inputAlias: "<value>",
                                      createdBy: {
                                        name: "George Clooney",
                                        obfuscatedId: "abc123",
                                        metadata: {
                                          type: "FULL_TIME",
                                          title: "Actor",
                                          department: "Movies",
                                          email: "george@example.com",
                                          location: "Hollywood, CA",
                                          phone: "6505551234",
                                          photoUrl: "https://example.com/george.jpg",
                                          startDate: new RFCDate("2000-01-23"),
                                          datasourceProfile: [
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                          ],
                                          querySuggestions: {
                                            suggestions: [
                                              {
                                                query: "app:github type:pull author:mortimer",
                                                label: "Mortimer's PRs",
                                                datasource: "github",
                                              },
                                            ],
                                          },
                                          inviteInfo: {
                                            invites: [
                                              {},
                                              {},
                                              {},
                                            ],
                                          },
                                          badges: [
                                            {
                                              key: "deployment_name_new_hire",
                                              displayName: "New hire",
                                              iconConfig: {
                                                color: "#343CED",
                                                key: "person_icon",
                                                iconType: "GLYPH",
                                                name: "user",
                                              },
                                            },
                                          ],
                                        },
                                      },
                                      updatedBy: {
                                        name: "George Clooney",
                                        obfuscatedId: "abc123",
                                        metadata: {
                                          type: "FULL_TIME",
                                          title: "Actor",
                                          department: "Movies",
                                          email: "george@example.com",
                                          location: "Hollywood, CA",
                                          phone: "6505551234",
                                          photoUrl: "https://example.com/george.jpg",
                                          startDate: new RFCDate("2000-01-23"),
                                          datasourceProfile: [
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                          ],
                                          querySuggestions: {
                                            suggestions: [
                                              {
                                                query: "app:github type:pull author:mortimer",
                                                label: "Mortimer's PRs",
                                                datasource: "github",
                                              },
                                            ],
                                          },
                                          inviteInfo: {
                                            invites: [
                                              {},
                                              {},
                                              {},
                                            ],
                                          },
                                          badges: [
                                            {
                                              key: "deployment_name_new_hire",
                                              displayName: "New hire",
                                              iconConfig: {
                                                color: "#343CED",
                                                key: "person_icon",
                                                iconType: "GLYPH",
                                                name: "user",
                                              },
                                            },
                                          ],
                                        },
                                      },
                                      roles: [
                                        {
                                          person: {
                                            name: "George Clooney",
                                            obfuscatedId: "abc123",
                                            metadata: {
                                              type: "FULL_TIME",
                                              title: "Actor",
                                              department: "Movies",
                                              email: "george@example.com",
                                              location: "Hollywood, CA",
                                              phone: "6505551234",
                                              photoUrl: "https://example.com/george.jpg",
                                              startDate: new RFCDate("2000-01-23"),
                                              datasourceProfile: [
                                                {
                                                  datasource: "github",
                                                  handle: "<value>",
                                                },
                                                {
                                                  datasource: "github",
                                                  handle: "<value>",
                                                },
                                              ],
                                              querySuggestions: {
                                                suggestions: [
                                                  {
                                                    query: "app:github type:pull author:mortimer",
                                                    label: "Mortimer's PRs",
                                                    datasource: "github",
                                                  },
                                                ],
                                              },
                                              inviteInfo: {
                                                invites: [
                                                  {},
                                                  {},
                                                  {},
                                                ],
                                              },
                                              badges: [
                                                {
                                                  key: "deployment_name_new_hire",
                                                  displayName: "New hire",
                                                  iconConfig: {
                                                    color: "#343CED",
                                                    key: "person_icon",
                                                    iconType: "GLYPH",
                                                    name: "user",
                                                  },
                                                },
                                              ],
                                            },
                                          },
                                          role: "ANSWER_MODERATOR",
                                        },
                                        {
                                          person: {
                                            name: "George Clooney",
                                            obfuscatedId: "abc123",
                                            metadata: {
                                              type: "FULL_TIME",
                                              title: "Actor",
                                              department: "Movies",
                                              email: "george@example.com",
                                              location: "Hollywood, CA",
                                              phone: "6505551234",
                                              photoUrl: "https://example.com/george.jpg",
                                              startDate: new RFCDate("2000-01-23"),
                                              datasourceProfile: [
                                                {
                                                  datasource: "github",
                                                  handle: "<value>",
                                                },
                                                {
                                                  datasource: "github",
                                                  handle: "<value>",
                                                },
                                              ],
                                              querySuggestions: {
                                                suggestions: [
                                                  {
                                                    query: "app:github type:pull author:mortimer",
                                                    label: "Mortimer's PRs",
                                                    datasource: "github",
                                                  },
                                                ],
                                              },
                                              inviteInfo: {
                                                invites: [
                                                  {},
                                                  {},
                                                  {},
                                                ],
                                              },
                                              badges: [
                                                {
                                                  key: "deployment_name_new_hire",
                                                  displayName: "New hire",
                                                  iconConfig: {
                                                    color: "#343CED",
                                                    key: "person_icon",
                                                    iconType: "GLYPH",
                                                    name: "user",
                                                  },
                                                },
                                              ],
                                            },
                                          },
                                          role: "ANSWER_MODERATOR",
                                        },
                                      ],
                                    },
                                    itemType: "COLLECTION",
                                  },
                                ],
                              },
                            ],
                            interactions: {
                              reacts: [
                                {
                                  reactors: [
                                    {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                    },
                                  ],
                                },
                                {
                                  reactors: [
                                    {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                    },
                                  ],
                                },
                              ],
                              shares: [
                                {
                                  numDaysAgo: 582012,
                                  sharer: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      querySuggestions: {
                                        suggestions: [
                                          {
                                            query: "app:github type:pull author:mortimer",
                                            label: "Mortimer's PRs",
                                            datasource: "github",
                                          },
                                        ],
                                      },
                                      inviteInfo: {
                                        invites: [
                                          {},
                                          {},
                                          {},
                                        ],
                                      },
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                },
                              ],
                            },
                            verification: {
                              state: "DEPRECATED",
                              metadata: {
                                lastVerifier: {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                  metadata: {
                                    type: "FULL_TIME",
                                    title: "Actor",
                                    department: "Movies",
                                    email: "george@example.com",
                                    location: "Hollywood, CA",
                                    phone: "6505551234",
                                    photoUrl: "https://example.com/george.jpg",
                                    startDate: new RFCDate("2000-01-23"),
                                    datasourceProfile: [
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                    ],
                                    querySuggestions: {
                                      suggestions: [
                                        {
                                          query: "app:github type:pull author:mortimer",
                                          label: "Mortimer's PRs",
                                          datasource: "github",
                                        },
                                      ],
                                    },
                                    inviteInfo: {
                                      invites: [
                                        {},
                                        {},
                                        {},
                                      ],
                                    },
                                    badges: [
                                      {
                                        key: "deployment_name_new_hire",
                                        displayName: "New hire",
                                        iconConfig: {
                                          color: "#343CED",
                                          key: "person_icon",
                                          iconType: "GLYPH",
                                          name: "user",
                                        },
                                      },
                                    ],
                                  },
                                },
                                reminders: [
                                  {
                                    assignee: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    requestor: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    remindAt: 785622,
                                  },
                                  {
                                    assignee: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    requestor: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    remindAt: 785622,
                                  },
                                  {
                                    assignee: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    requestor: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    remindAt: 785622,
                                  },
                                ],
                                lastReminder: {
                                  assignee: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      querySuggestions: {
                                        suggestions: [
                                          {
                                            query: "app:github type:pull author:mortimer",
                                            label: "Mortimer's PRs",
                                            datasource: "github",
                                          },
                                        ],
                                      },
                                      inviteInfo: {
                                        invites: [
                                          {},
                                          {},
                                          {},
                                        ],
                                      },
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  requestor: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      querySuggestions: {
                                        suggestions: [
                                          {
                                            query: "app:github type:pull author:mortimer",
                                            label: "Mortimer's PRs",
                                            datasource: "github",
                                          },
                                        ],
                                      },
                                      inviteInfo: {
                                        invites: [
                                          {},
                                          {},
                                          {},
                                        ],
                                      },
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  remindAt: 269943,
                                },
                                candidateVerifiers: [
                                  {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                  },
                                ],
                              },
                            },
                            shortcuts: [
                              {
                                inputAlias: "<value>",
                                createdBy: {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                  metadata: {
                                    type: "FULL_TIME",
                                    title: "Actor",
                                    department: "Movies",
                                    email: "george@example.com",
                                    location: "Hollywood, CA",
                                    phone: "6505551234",
                                    photoUrl: "https://example.com/george.jpg",
                                    startDate: new RFCDate("2000-01-23"),
                                    datasourceProfile: [
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                    ],
                                    querySuggestions: {
                                      suggestions: [
                                        {
                                          query: "app:github type:pull author:mortimer",
                                          label: "Mortimer's PRs",
                                          datasource: "github",
                                        },
                                      ],
                                    },
                                    inviteInfo: {
                                      invites: [
                                        {},
                                        {},
                                        {},
                                      ],
                                    },
                                    badges: [
                                      {
                                        key: "deployment_name_new_hire",
                                        displayName: "New hire",
                                        iconConfig: {
                                          color: "#343CED",
                                          key: "person_icon",
                                          iconType: "GLYPH",
                                          name: "user",
                                        },
                                      },
                                    ],
                                  },
                                },
                                updatedBy: {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                  metadata: {
                                    type: "FULL_TIME",
                                    title: "Actor",
                                    department: "Movies",
                                    email: "george@example.com",
                                    location: "Hollywood, CA",
                                    phone: "6505551234",
                                    photoUrl: "https://example.com/george.jpg",
                                    startDate: new RFCDate("2000-01-23"),
                                    datasourceProfile: [
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                    ],
                                    querySuggestions: {
                                      suggestions: [
                                        {
                                          query: "app:github type:pull author:mortimer",
                                          label: "Mortimer's PRs",
                                          datasource: "github",
                                        },
                                      ],
                                    },
                                    inviteInfo: {
                                      invites: [
                                        {},
                                        {},
                                        {},
                                      ],
                                    },
                                    badges: [
                                      {
                                        key: "deployment_name_new_hire",
                                        displayName: "New hire",
                                        iconConfig: {
                                          color: "#343CED",
                                          key: "person_icon",
                                          iconType: "GLYPH",
                                          name: "user",
                                        },
                                      },
                                    ],
                                  },
                                },
                              },
                            ],
                            customData: {
                              "someCustomField": {},
                            },
                            contactPerson: {
                              name: "George Clooney",
                              obfuscatedId: "abc123",
                              metadata: {
                                type: "FULL_TIME",
                                title: "Actor",
                                department: "Movies",
                                email: "george@example.com",
                                location: "Hollywood, CA",
                                phone: "6505551234",
                                photoUrl: "https://example.com/george.jpg",
                                startDate: new RFCDate("2000-01-23"),
                                datasourceProfile: [
                                  {
                                    datasource: "github",
                                    handle: "<value>",
                                  },
                                  {
                                    datasource: "github",
                                    handle: "<value>",
                                  },
                                ],
                                querySuggestions: {
                                  suggestions: [
                                    {
                                      query: "app:github type:pull author:mortimer",
                                      label: "Mortimer's PRs",
                                      datasource: "github",
                                    },
                                  ],
                                },
                                inviteInfo: {
                                  invites: [
                                    {},
                                    {},
                                    {},
                                  ],
                                },
                                badges: [
                                  {
                                    key: "deployment_name_new_hire",
                                    displayName: "New hire",
                                    iconConfig: {
                                      color: "#343CED",
                                      key: "person_icon",
                                      iconType: "GLYPH",
                                      name: "user",
                                    },
                                  },
                                ],
                              },
                            },
                          },
                        },
                        person: {
                          name: "George Clooney",
                          obfuscatedId: "abc123",
                          metadata: {
                            type: "FULL_TIME",
                            title: "Actor",
                            department: "Movies",
                            email: "george@example.com",
                            location: "Hollywood, CA",
                            phone: "6505551234",
                            photoUrl: "https://example.com/george.jpg",
                            startDate: new RFCDate("2000-01-23"),
                            datasourceProfile: [
                              {
                                datasource: "github",
                                handle: "<value>",
                              },
                            ],
                            querySuggestions: {
                              suggestions: [
                                {
                                  query: "app:github type:pull author:mortimer",
                                  label: "Mortimer's PRs",
                                  datasource: "github",
                                },
                              ],
                            },
                            inviteInfo: {
                              invites: [
                                {},
                                {},
                                {},
                              ],
                            },
                            badges: [
                              {
                                key: "deployment_name_new_hire",
                                displayName: "New hire",
                                iconConfig: {
                                  color: "#343CED",
                                  key: "person_icon",
                                  iconType: "GLYPH",
                                  name: "user",
                                },
                              },
                            ],
                          },
                        },
                        customer: {
                          id: "<id>",
                          company: {
                            name: "<value>",
                            location: "New York City",
                            industry: "Finances",
                            about: "Financial, software, data, and media company headquartered in Midtown Manhattan, New York City",
                          },
                          poc: [
                            {
                              name: "George Clooney",
                              obfuscatedId: "abc123",
                            },
                          ],
                          notes: "CIO is interested in trying out the product.",
                        },
                        team: {
                          id: "<id>",
                          name: "<value>",
                          members: [
                            {
                              person: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  querySuggestions: {
                                    suggestions: [
                                      {
                                        query: "app:github type:pull author:mortimer",
                                        label: "Mortimer's PRs",
                                        datasource: "github",
                                      },
                                    ],
                                  },
                                  inviteInfo: {
                                    invites: [
                                      {},
                                      {},
                                      {},
                                    ],
                                  },
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                            },
                            {
                              person: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  querySuggestions: {
                                    suggestions: [
                                      {
                                        query: "app:github type:pull author:mortimer",
                                        label: "Mortimer's PRs",
                                        datasource: "github",
                                      },
                                    ],
                                  },
                                  inviteInfo: {
                                    invites: [
                                      {},
                                      {},
                                      {},
                                    ],
                                  },
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                            },
                            {
                              person: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  querySuggestions: {
                                    suggestions: [
                                      {
                                        query: "app:github type:pull author:mortimer",
                                        label: "Mortimer's PRs",
                                        datasource: "github",
                                      },
                                    ],
                                  },
                                  inviteInfo: {
                                    invites: [
                                      {},
                                      {},
                                      {},
                                    ],
                                  },
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                            },
                          ],
                          datasourceProfiles: [
                            {
                              datasource: "github",
                              handle: "<value>",
                            },
                          ],
                        },
                        answer: {
                          id: 3,
                          docId: "ANSWERS_answer_3",
                          question: "Why is the sky blue?",
                          bodyText: "From https://en.wikipedia.org/wiki/Diffuse_sky_radiation, the sky is blue because blue light is more strongly scattered than longer-wavelength light.",
                          audienceFilters: [
                            {
                              fieldName: "type",
                              values: [
                                {
                                  value: "Spreadsheet",
                                  relationType: "EQUALS",
                                },
                                {
                                  value: "Presentation",
                                  relationType: "EQUALS",
                                },
                              ],
                            },
                          ],
                          likes: {
                            likedBy: [
                              {
                                user: {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                  metadata: {
                                    type: "FULL_TIME",
                                    title: "Actor",
                                    department: "Movies",
                                    email: "george@example.com",
                                    location: "Hollywood, CA",
                                    phone: "6505551234",
                                    photoUrl: "https://example.com/george.jpg",
                                    startDate: new RFCDate("2000-01-23"),
                                    datasourceProfile: [
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                    ],
                                    querySuggestions: {
                                      suggestions: [
                                        {
                                          query: "app:github type:pull author:mortimer",
                                          label: "Mortimer's PRs",
                                          datasource: "github",
                                        },
                                      ],
                                    },
                                    inviteInfo: {
                                      invites: [
                                        {},
                                        {},
                                        {},
                                      ],
                                    },
                                    badges: [
                                      {
                                        key: "deployment_name_new_hire",
                                        displayName: "New hire",
                                        iconConfig: {
                                          color: "#343CED",
                                          key: "person_icon",
                                          iconType: "GLYPH",
                                          name: "user",
                                        },
                                      },
                                    ],
                                  },
                                },
                              },
                              {
                                user: {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                  metadata: {
                                    type: "FULL_TIME",
                                    title: "Actor",
                                    department: "Movies",
                                    email: "george@example.com",
                                    location: "Hollywood, CA",
                                    phone: "6505551234",
                                    photoUrl: "https://example.com/george.jpg",
                                    startDate: new RFCDate("2000-01-23"),
                                    datasourceProfile: [
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                    ],
                                    querySuggestions: {
                                      suggestions: [
                                        {
                                          query: "app:github type:pull author:mortimer",
                                          label: "Mortimer's PRs",
                                          datasource: "github",
                                        },
                                      ],
                                    },
                                    inviteInfo: {
                                      invites: [
                                        {},
                                        {},
                                        {},
                                      ],
                                    },
                                    badges: [
                                      {
                                        key: "deployment_name_new_hire",
                                        displayName: "New hire",
                                        iconConfig: {
                                          color: "#343CED",
                                          key: "person_icon",
                                          iconType: "GLYPH",
                                          name: "user",
                                        },
                                      },
                                    ],
                                  },
                                },
                              },
                            ],
                            likedByUser: false,
                            numLikes: 572532,
                          },
                          author: {
                            name: "George Clooney",
                            obfuscatedId: "abc123",
                            metadata: {
                              type: "FULL_TIME",
                              title: "Actor",
                              department: "Movies",
                              email: "george@example.com",
                              location: "Hollywood, CA",
                              phone: "6505551234",
                              photoUrl: "https://example.com/george.jpg",
                              startDate: new RFCDate("2000-01-23"),
                              datasourceProfile: [
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                              ],
                              querySuggestions: {
                                suggestions: [
                                  {
                                    query: "app:github type:pull author:mortimer",
                                    label: "Mortimer's PRs",
                                    datasource: "github",
                                  },
                                ],
                              },
                              inviteInfo: {
                                invites: [
                                  {},
                                  {},
                                  {},
                                ],
                              },
                              badges: [
                                {
                                  key: "deployment_name_new_hire",
                                  displayName: "New hire",
                                  iconConfig: {
                                    color: "#343CED",
                                    key: "person_icon",
                                    iconType: "GLYPH",
                                    name: "user",
                                  },
                                },
                              ],
                            },
                          },
                          updatedBy: {
                            name: "George Clooney",
                            obfuscatedId: "abc123",
                            metadata: {
                              type: "FULL_TIME",
                              title: "Actor",
                              department: "Movies",
                              email: "george@example.com",
                              location: "Hollywood, CA",
                              phone: "6505551234",
                              photoUrl: "https://example.com/george.jpg",
                              startDate: new RFCDate("2000-01-23"),
                              datasourceProfile: [
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                              ],
                              querySuggestions: {
                                suggestions: [
                                  {
                                    query: "app:github type:pull author:mortimer",
                                    label: "Mortimer's PRs",
                                    datasource: "github",
                                  },
                                ],
                              },
                              inviteInfo: {
                                invites: [
                                  {},
                                  {},
                                  {},
                                ],
                              },
                              badges: [
                                {
                                  key: "deployment_name_new_hire",
                                  displayName: "New hire",
                                  iconConfig: {
                                    color: "#343CED",
                                    key: "person_icon",
                                    iconType: "GLYPH",
                                    name: "user",
                                  },
                                },
                              ],
                            },
                          },
                          verification: {
                            state: "DEPRECATED",
                            metadata: {
                              lastVerifier: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  querySuggestions: {
                                    suggestions: [
                                      {
                                        query: "app:github type:pull author:mortimer",
                                        label: "Mortimer's PRs",
                                        datasource: "github",
                                      },
                                    ],
                                  },
                                  inviteInfo: {
                                    invites: [
                                      {},
                                      {},
                                      {},
                                    ],
                                  },
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                              document: {
                                metadata: {
                                  datasource: "datasource",
                                  objectType: "Feature Request",
                                  container: "container",
                                  parentId: "JIRA_EN-1337",
                                  mimeType: "mimeType",
                                  documentId: "documentId",
                                  createTime: new Date("2000-01-23T04:56:07.000Z"),
                                  updateTime: new Date("2000-01-23T04:56:07.000Z"),
                                  author: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  owner: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  components: [
                                    "Backend",
                                    "Networking",
                                  ],
                                  status: "[\"Done\"]",
                                  assignedTo: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  updatedBy: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  customData: {
                                    "someCustomField": {},
                                  },
                                  contactPerson: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                },
                              },
                              reminders: [
                                {
                                  assignee: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      querySuggestions: {
                                        suggestions: [
                                          {
                                            query: "app:github type:pull author:mortimer",
                                            label: "Mortimer's PRs",
                                            datasource: "github",
                                          },
                                        ],
                                      },
                                      inviteInfo: {
                                        invites: [
                                          {},
                                          {},
                                          {},
                                        ],
                                      },
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  requestor: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      querySuggestions: {
                                        suggestions: [
                                          {
                                            query: "app:github type:pull author:mortimer",
                                            label: "Mortimer's PRs",
                                            datasource: "github",
                                          },
                                        ],
                                      },
                                      inviteInfo: {
                                        invites: [
                                          {},
                                          {},
                                          {},
                                        ],
                                      },
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  remindAt: 785622,
                                },
                                {
                                  assignee: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      querySuggestions: {
                                        suggestions: [
                                          {
                                            query: "app:github type:pull author:mortimer",
                                            label: "Mortimer's PRs",
                                            datasource: "github",
                                          },
                                        ],
                                      },
                                      inviteInfo: {
                                        invites: [
                                          {},
                                          {},
                                          {},
                                        ],
                                      },
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  requestor: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      querySuggestions: {
                                        suggestions: [
                                          {
                                            query: "app:github type:pull author:mortimer",
                                            label: "Mortimer's PRs",
                                            datasource: "github",
                                          },
                                        ],
                                      },
                                      inviteInfo: {
                                        invites: [
                                          {},
                                          {},
                                          {},
                                        ],
                                      },
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  remindAt: 785622,
                                },
                                {
                                  assignee: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      querySuggestions: {
                                        suggestions: [
                                          {
                                            query: "app:github type:pull author:mortimer",
                                            label: "Mortimer's PRs",
                                            datasource: "github",
                                          },
                                        ],
                                      },
                                      inviteInfo: {
                                        invites: [
                                          {},
                                          {},
                                          {},
                                        ],
                                      },
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  requestor: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      querySuggestions: {
                                        suggestions: [
                                          {
                                            query: "app:github type:pull author:mortimer",
                                            label: "Mortimer's PRs",
                                            datasource: "github",
                                          },
                                        ],
                                      },
                                      inviteInfo: {
                                        invites: [
                                          {},
                                          {},
                                          {},
                                        ],
                                      },
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  remindAt: 785622,
                                },
                              ],
                              lastReminder: {
                                assignee: {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                  metadata: {
                                    type: "FULL_TIME",
                                    title: "Actor",
                                    department: "Movies",
                                    email: "george@example.com",
                                    location: "Hollywood, CA",
                                    phone: "6505551234",
                                    photoUrl: "https://example.com/george.jpg",
                                    startDate: new RFCDate("2000-01-23"),
                                    datasourceProfile: [
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                    ],
                                    querySuggestions: {
                                      suggestions: [
                                        {
                                          query: "app:github type:pull author:mortimer",
                                          label: "Mortimer's PRs",
                                          datasource: "github",
                                        },
                                      ],
                                    },
                                    inviteInfo: {
                                      invites: [
                                        {},
                                        {},
                                        {},
                                      ],
                                    },
                                    badges: [
                                      {
                                        key: "deployment_name_new_hire",
                                        displayName: "New hire",
                                        iconConfig: {
                                          color: "#343CED",
                                          key: "person_icon",
                                          iconType: "GLYPH",
                                          name: "user",
                                        },
                                      },
                                    ],
                                  },
                                },
                                requestor: {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                  metadata: {
                                    type: "FULL_TIME",
                                    title: "Actor",
                                    department: "Movies",
                                    email: "george@example.com",
                                    location: "Hollywood, CA",
                                    phone: "6505551234",
                                    photoUrl: "https://example.com/george.jpg",
                                    startDate: new RFCDate("2000-01-23"),
                                    datasourceProfile: [
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                    ],
                                    querySuggestions: {
                                      suggestions: [
                                        {
                                          query: "app:github type:pull author:mortimer",
                                          label: "Mortimer's PRs",
                                          datasource: "github",
                                        },
                                      ],
                                    },
                                    inviteInfo: {
                                      invites: [
                                        {},
                                        {},
                                        {},
                                      ],
                                    },
                                    badges: [
                                      {
                                        key: "deployment_name_new_hire",
                                        displayName: "New hire",
                                        iconConfig: {
                                          color: "#343CED",
                                          key: "person_icon",
                                          iconType: "GLYPH",
                                          name: "user",
                                        },
                                      },
                                    ],
                                  },
                                },
                                remindAt: 269943,
                              },
                              candidateVerifiers: [
                                {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                },
                              ],
                            },
                          },
                          sourceDocument: {
                            metadata: {
                              datasource: "datasource",
                              objectType: "Feature Request",
                              container: "container",
                              parentId: "JIRA_EN-1337",
                              mimeType: "mimeType",
                              documentId: "documentId",
                              createTime: new Date("2000-01-23T04:56:07.000Z"),
                              updateTime: new Date("2000-01-23T04:56:07.000Z"),
                              author: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  querySuggestions: {
                                    suggestions: [
                                      {
                                        query: "app:github type:pull author:mortimer",
                                        label: "Mortimer's PRs",
                                        datasource: "github",
                                      },
                                    ],
                                  },
                                  inviteInfo: {
                                    invites: [
                                      {},
                                      {},
                                      {},
                                    ],
                                  },
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                              owner: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  querySuggestions: {
                                    suggestions: [
                                      {
                                        query: "app:github type:pull author:mortimer",
                                        label: "Mortimer's PRs",
                                        datasource: "github",
                                      },
                                    ],
                                  },
                                  inviteInfo: {
                                    invites: [
                                      {},
                                      {},
                                      {},
                                    ],
                                  },
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                              components: [
                                "Backend",
                                "Networking",
                              ],
                              status: "[\"Done\"]",
                              assignedTo: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  querySuggestions: {
                                    suggestions: [
                                      {
                                        query: "app:github type:pull author:mortimer",
                                        label: "Mortimer's PRs",
                                        datasource: "github",
                                      },
                                    ],
                                  },
                                  inviteInfo: {
                                    invites: [
                                      {},
                                      {},
                                      {},
                                    ],
                                  },
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                              updatedBy: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  querySuggestions: {
                                    suggestions: [
                                      {
                                        query: "app:github type:pull author:mortimer",
                                        label: "Mortimer's PRs",
                                        datasource: "github",
                                      },
                                    ],
                                  },
                                  inviteInfo: {
                                    invites: [
                                      {},
                                      {},
                                      {},
                                    ],
                                  },
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                              interactions: {
                                reacts: [
                                  {
                                    reactors: [
                                      {
                                        name: "George Clooney",
                                        obfuscatedId: "abc123",
                                      },
                                    ],
                                  },
                                  {
                                    reactors: [
                                      {
                                        name: "George Clooney",
                                        obfuscatedId: "abc123",
                                      },
                                    ],
                                  },
                                ],
                                shares: [
                                  {
                                    numDaysAgo: 582012,
                                    sharer: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                  },
                                ],
                              },
                              verification: {
                                state: "DEPRECATED",
                                metadata: {
                                  lastVerifier: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      querySuggestions: {
                                        suggestions: [
                                          {
                                            query: "app:github type:pull author:mortimer",
                                            label: "Mortimer's PRs",
                                            datasource: "github",
                                          },
                                        ],
                                      },
                                      inviteInfo: {
                                        invites: [
                                          {},
                                          {},
                                          {},
                                        ],
                                      },
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  reminders: [
                                    {
                                      assignee: {
                                        name: "George Clooney",
                                        obfuscatedId: "abc123",
                                        metadata: {
                                          type: "FULL_TIME",
                                          title: "Actor",
                                          department: "Movies",
                                          email: "george@example.com",
                                          location: "Hollywood, CA",
                                          phone: "6505551234",
                                          photoUrl: "https://example.com/george.jpg",
                                          startDate: new RFCDate("2000-01-23"),
                                          datasourceProfile: [
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                          ],
                                          querySuggestions: {
                                            suggestions: [
                                              {
                                                query: "app:github type:pull author:mortimer",
                                                label: "Mortimer's PRs",
                                                datasource: "github",
                                              },
                                            ],
                                          },
                                          inviteInfo: {
                                            invites: [
                                              {},
                                              {},
                                              {},
                                            ],
                                          },
                                          badges: [
                                            {
                                              key: "deployment_name_new_hire",
                                              displayName: "New hire",
                                              iconConfig: {
                                                color: "#343CED",
                                                key: "person_icon",
                                                iconType: "GLYPH",
                                                name: "user",
                                              },
                                            },
                                          ],
                                        },
                                      },
                                      requestor: {
                                        name: "George Clooney",
                                        obfuscatedId: "abc123",
                                        metadata: {
                                          type: "FULL_TIME",
                                          title: "Actor",
                                          department: "Movies",
                                          email: "george@example.com",
                                          location: "Hollywood, CA",
                                          phone: "6505551234",
                                          photoUrl: "https://example.com/george.jpg",
                                          startDate: new RFCDate("2000-01-23"),
                                          datasourceProfile: [
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                          ],
                                          querySuggestions: {
                                            suggestions: [
                                              {
                                                query: "app:github type:pull author:mortimer",
                                                label: "Mortimer's PRs",
                                                datasource: "github",
                                              },
                                            ],
                                          },
                                          inviteInfo: {
                                            invites: [
                                              {},
                                              {},
                                              {},
                                            ],
                                          },
                                          badges: [
                                            {
                                              key: "deployment_name_new_hire",
                                              displayName: "New hire",
                                              iconConfig: {
                                                color: "#343CED",
                                                key: "person_icon",
                                                iconType: "GLYPH",
                                                name: "user",
                                              },
                                            },
                                          ],
                                        },
                                      },
                                      remindAt: 785622,
                                    },
                                    {
                                      assignee: {
                                        name: "George Clooney",
                                        obfuscatedId: "abc123",
                                        metadata: {
                                          type: "FULL_TIME",
                                          title: "Actor",
                                          department: "Movies",
                                          email: "george@example.com",
                                          location: "Hollywood, CA",
                                          phone: "6505551234",
                                          photoUrl: "https://example.com/george.jpg",
                                          startDate: new RFCDate("2000-01-23"),
                                          datasourceProfile: [
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                          ],
                                          querySuggestions: {
                                            suggestions: [
                                              {
                                                query: "app:github type:pull author:mortimer",
                                                label: "Mortimer's PRs",
                                                datasource: "github",
                                              },
                                            ],
                                          },
                                          inviteInfo: {
                                            invites: [
                                              {},
                                              {},
                                              {},
                                            ],
                                          },
                                          badges: [
                                            {
                                              key: "deployment_name_new_hire",
                                              displayName: "New hire",
                                              iconConfig: {
                                                color: "#343CED",
                                                key: "person_icon",
                                                iconType: "GLYPH",
                                                name: "user",
                                              },
                                            },
                                          ],
                                        },
                                      },
                                      requestor: {
                                        name: "George Clooney",
                                        obfuscatedId: "abc123",
                                        metadata: {
                                          type: "FULL_TIME",
                                          title: "Actor",
                                          department: "Movies",
                                          email: "george@example.com",
                                          location: "Hollywood, CA",
                                          phone: "6505551234",
                                          photoUrl: "https://example.com/george.jpg",
                                          startDate: new RFCDate("2000-01-23"),
                                          datasourceProfile: [
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                          ],
                                          querySuggestions: {
                                            suggestions: [
                                              {
                                                query: "app:github type:pull author:mortimer",
                                                label: "Mortimer's PRs",
                                                datasource: "github",
                                              },
                                            ],
                                          },
                                          inviteInfo: {
                                            invites: [
                                              {},
                                              {},
                                              {},
                                            ],
                                          },
                                          badges: [
                                            {
                                              key: "deployment_name_new_hire",
                                              displayName: "New hire",
                                              iconConfig: {
                                                color: "#343CED",
                                                key: "person_icon",
                                                iconType: "GLYPH",
                                                name: "user",
                                              },
                                            },
                                          ],
                                        },
                                      },
                                      remindAt: 785622,
                                    },
                                    {
                                      assignee: {
                                        name: "George Clooney",
                                        obfuscatedId: "abc123",
                                        metadata: {
                                          type: "FULL_TIME",
                                          title: "Actor",
                                          department: "Movies",
                                          email: "george@example.com",
                                          location: "Hollywood, CA",
                                          phone: "6505551234",
                                          photoUrl: "https://example.com/george.jpg",
                                          startDate: new RFCDate("2000-01-23"),
                                          datasourceProfile: [
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                          ],
                                          querySuggestions: {
                                            suggestions: [
                                              {
                                                query: "app:github type:pull author:mortimer",
                                                label: "Mortimer's PRs",
                                                datasource: "github",
                                              },
                                            ],
                                          },
                                          inviteInfo: {
                                            invites: [
                                              {},
                                              {},
                                              {},
                                            ],
                                          },
                                          badges: [
                                            {
                                              key: "deployment_name_new_hire",
                                              displayName: "New hire",
                                              iconConfig: {
                                                color: "#343CED",
                                                key: "person_icon",
                                                iconType: "GLYPH",
                                                name: "user",
                                              },
                                            },
                                          ],
                                        },
                                      },
                                      requestor: {
                                        name: "George Clooney",
                                        obfuscatedId: "abc123",
                                        metadata: {
                                          type: "FULL_TIME",
                                          title: "Actor",
                                          department: "Movies",
                                          email: "george@example.com",
                                          location: "Hollywood, CA",
                                          phone: "6505551234",
                                          photoUrl: "https://example.com/george.jpg",
                                          startDate: new RFCDate("2000-01-23"),
                                          datasourceProfile: [
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                          ],
                                          querySuggestions: {
                                            suggestions: [
                                              {
                                                query: "app:github type:pull author:mortimer",
                                                label: "Mortimer's PRs",
                                                datasource: "github",
                                              },
                                            ],
                                          },
                                          inviteInfo: {
                                            invites: [
                                              {},
                                              {},
                                              {},
                                            ],
                                          },
                                          badges: [
                                            {
                                              key: "deployment_name_new_hire",
                                              displayName: "New hire",
                                              iconConfig: {
                                                color: "#343CED",
                                                key: "person_icon",
                                                iconType: "GLYPH",
                                                name: "user",
                                              },
                                            },
                                          ],
                                        },
                                      },
                                      remindAt: 785622,
                                    },
                                  ],
                                  lastReminder: {
                                    assignee: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    requestor: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    remindAt: 269943,
                                  },
                                  candidateVerifiers: [
                                    {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                    },
                                  ],
                                },
                              },
                              customData: {
                                "someCustomField": {},
                              },
                              contactPerson: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  querySuggestions: {
                                    suggestions: [
                                      {
                                        query: "app:github type:pull author:mortimer",
                                        label: "Mortimer's PRs",
                                        datasource: "github",
                                      },
                                    ],
                                  },
                                  inviteInfo: {
                                    invites: [
                                      {},
                                      {},
                                      {},
                                    ],
                                  },
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                            },
                          },
                        },
                        extractedQnA: {
                          questionResult: {
                            document: {
                              metadata: {
                                datasource: "datasource",
                                objectType: "Feature Request",
                                container: "container",
                                parentId: "JIRA_EN-1337",
                                mimeType: "mimeType",
                                documentId: "documentId",
                                createTime: new Date("2000-01-23T04:56:07.000Z"),
                                updateTime: new Date("2000-01-23T04:56:07.000Z"),
                                author: {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                  relatedDocuments: [
                                    {
                                      querySuggestion: {
                                        query: "app:github type:pull author:mortimer",
                                        searchProviderInfo: {
                                          name: "Google",
                                          searchLinkUrlTemplate: "https://www.google.com/search?q={query}&hl=en",
                                        },
                                        label: "Mortimer's PRs",
                                        datasource: "github",
                                        requestOptions: {
                                          datasourceFilter: "JIRA",
                                          datasourcesFilter: [
                                            "JIRA",
                                          ],
                                          queryOverridesFacetFilters: true,
                                          facetFilters: [
                                            {
                                              fieldName: "type",
                                              values: [
                                                {
                                                  value: "Spreadsheet",
                                                  relationType: "EQUALS",
                                                },
                                                {
                                                  value: "Presentation",
                                                  relationType: "EQUALS",
                                                },
                                              ],
                                            },
                                          ],
                                          facetFilterSets: [
                                            {
                                              filters: [
                                                {
                                                  fieldName: "type",
                                                  values: [
                                                    {
                                                      value: "Spreadsheet",
                                                      relationType: "EQUALS",
                                                    },
                                                    {
                                                      value: "Presentation",
                                                      relationType: "EQUALS",
                                                    },
                                                  ],
                                                },
                                              ],
                                            },
                                            {
                                              filters: [
                                                {
                                                  fieldName: "type",
                                                  values: [
                                                    {
                                                      value: "Spreadsheet",
                                                      relationType: "EQUALS",
                                                    },
                                                    {
                                                      value: "Presentation",
                                                      relationType: "EQUALS",
                                                    },
                                                  ],
                                                },
                                              ],
                                            },
                                          ],
                                          facetBucketSize: 843281,
                                          authTokens: [
                                            {
                                              accessToken: "123abc",
                                              datasource: "gmail",
                                              scope: "email profile https://www.googleapis.com/auth/gmail.readonly",
                                              tokenType: "Bearer",
                                              authUser: "1",
                                            },
                                          ],
                                        },
                                        ranges: [
                                          {
                                            startIndex: 925801,
                                          },
                                          {
                                            startIndex: 925801,
                                          },
                                          {
                                            startIndex: 925801,
                                          },
                                        ],
                                        inputDetails: {
                                          hasCopyPaste: true,
                                        },
                                      },
                                    },
                                    {
                                      querySuggestion: {
                                        query: "app:github type:pull author:mortimer",
                                        searchProviderInfo: {
                                          name: "Google",
                                          searchLinkUrlTemplate: "https://www.google.com/search?q={query}&hl=en",
                                        },
                                        label: "Mortimer's PRs",
                                        datasource: "github",
                                        requestOptions: {
                                          datasourceFilter: "JIRA",
                                          datasourcesFilter: [
                                            "JIRA",
                                          ],
                                          queryOverridesFacetFilters: true,
                                          facetFilters: [
                                            {
                                              fieldName: "type",
                                              values: [
                                                {
                                                  value: "Spreadsheet",
                                                  relationType: "EQUALS",
                                                },
                                                {
                                                  value: "Presentation",
                                                  relationType: "EQUALS",
                                                },
                                              ],
                                            },
                                          ],
                                          facetFilterSets: [
                                            {
                                              filters: [
                                                {
                                                  fieldName: "type",
                                                  values: [
                                                    {
                                                      value: "Spreadsheet",
                                                      relationType: "EQUALS",
                                                    },
                                                    {
                                                      value: "Presentation",
                                                      relationType: "EQUALS",
                                                    },
                                                  ],
                                                },
                                              ],
                                            },
                                            {
                                              filters: [
                                                {
                                                  fieldName: "type",
                                                  values: [
                                                    {
                                                      value: "Spreadsheet",
                                                      relationType: "EQUALS",
                                                    },
                                                    {
                                                      value: "Presentation",
                                                      relationType: "EQUALS",
                                                    },
                                                  ],
                                                },
                                              ],
                                            },
                                          ],
                                          facetBucketSize: 843281,
                                          authTokens: [
                                            {
                                              accessToken: "123abc",
                                              datasource: "gmail",
                                              scope: "email profile https://www.googleapis.com/auth/gmail.readonly",
                                              tokenType: "Bearer",
                                              authUser: "1",
                                            },
                                          ],
                                        },
                                        ranges: [
                                          {
                                            startIndex: 925801,
                                          },
                                          {
                                            startIndex: 925801,
                                          },
                                          {
                                            startIndex: 925801,
                                          },
                                        ],
                                        inputDetails: {
                                          hasCopyPaste: true,
                                        },
                                      },
                                    },
                                    {
                                      querySuggestion: {
                                        query: "app:github type:pull author:mortimer",
                                        searchProviderInfo: {
                                          name: "Google",
                                          searchLinkUrlTemplate: "https://www.google.com/search?q={query}&hl=en",
                                        },
                                        label: "Mortimer's PRs",
                                        datasource: "github",
                                        requestOptions: {
                                          datasourceFilter: "JIRA",
                                          datasourcesFilter: [
                                            "JIRA",
                                          ],
                                          queryOverridesFacetFilters: true,
                                          facetFilters: [
                                            {
                                              fieldName: "type",
                                              values: [
                                                {
                                                  value: "Spreadsheet",
                                                  relationType: "EQUALS",
                                                },
                                                {
                                                  value: "Presentation",
                                                  relationType: "EQUALS",
                                                },
                                              ],
                                            },
                                          ],
                                          facetFilterSets: [
                                            {
                                              filters: [
                                                {
                                                  fieldName: "type",
                                                  values: [
                                                    {
                                                      value: "Spreadsheet",
                                                      relationType: "EQUALS",
                                                    },
                                                    {
                                                      value: "Presentation",
                                                      relationType: "EQUALS",
                                                    },
                                                  ],
                                                },
                                              ],
                                            },
                                            {
                                              filters: [
                                                {
                                                  fieldName: "type",
                                                  values: [
                                                    {
                                                      value: "Spreadsheet",
                                                      relationType: "EQUALS",
                                                    },
                                                    {
                                                      value: "Presentation",
                                                      relationType: "EQUALS",
                                                    },
                                                  ],
                                                },
                                              ],
                                            },
                                          ],
                                          facetBucketSize: 843281,
                                          authTokens: [
                                            {
                                              accessToken: "123abc",
                                              datasource: "gmail",
                                              scope: "email profile https://www.googleapis.com/auth/gmail.readonly",
                                              tokenType: "Bearer",
                                              authUser: "1",
                                            },
                                          ],
                                        },
                                        ranges: [
                                          {
                                            startIndex: 925801,
                                          },
                                          {
                                            startIndex: 925801,
                                          },
                                          {
                                            startIndex: 925801,
                                          },
                                        ],
                                        inputDetails: {
                                          hasCopyPaste: true,
                                        },
                                      },
                                    },
                                  ],
                                  metadata: {
                                    type: "FULL_TIME",
                                    title: "Actor",
                                    department: "Movies",
                                    email: "george@example.com",
                                    location: "Hollywood, CA",
                                    phone: "6505551234",
                                    photoUrl: "https://example.com/george.jpg",
                                    startDate: new RFCDate("2000-01-23"),
                                    datasourceProfile: [
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                    ],
                                    querySuggestions: {
                                      suggestions: [
                                        {
                                          query: "app:github type:pull author:mortimer",
                                          label: "Mortimer's PRs",
                                          datasource: "github",
                                        },
                                      ],
                                    },
                                    inviteInfo: {
                                      invites: [
                                        {},
                                        {},
                                        {},
                                      ],
                                    },
                                    customFields: [
                                      {
                                        label: "<value>",
                                        values: [
                                          {},
                                          {},
                                        ],
                                      },
                                      {
                                        label: "<value>",
                                        values: [
                                          {},
                                          {},
                                        ],
                                      },
                                      {
                                        label: "<value>",
                                        values: [
                                          {},
                                          {},
                                        ],
                                      },
                                    ],
                                    badges: [
                                      {
                                        key: "deployment_name_new_hire",
                                        displayName: "New hire",
                                        iconConfig: {
                                          color: "#343CED",
                                          key: "person_icon",
                                          iconType: "GLYPH",
                                          name: "user",
                                        },
                                      },
                                    ],
                                  },
                                },
                                owner: {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                  metadata: {
                                    type: "FULL_TIME",
                                    title: "Actor",
                                    department: "Movies",
                                    email: "george@example.com",
                                    location: "Hollywood, CA",
                                    phone: "6505551234",
                                    photoUrl: "https://example.com/george.jpg",
                                    startDate: new RFCDate("2000-01-23"),
                                    datasourceProfile: [
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                    ],
                                    querySuggestions: {
                                      suggestions: [
                                        {
                                          query: "app:github type:pull author:mortimer",
                                          label: "Mortimer's PRs",
                                          datasource: "github",
                                        },
                                      ],
                                    },
                                    inviteInfo: {
                                      invites: [
                                        {},
                                        {},
                                        {},
                                      ],
                                    },
                                    badges: [
                                      {
                                        key: "deployment_name_new_hire",
                                        displayName: "New hire",
                                        iconConfig: {
                                          color: "#343CED",
                                          key: "person_icon",
                                          iconType: "GLYPH",
                                          name: "user",
                                        },
                                      },
                                    ],
                                  },
                                },
                                mentionedPeople: [
                                  {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                  },
                                ],
                                components: [
                                  "Backend",
                                  "Networking",
                                ],
                                status: "[\"Done\"]",
                                pins: [
                                  {
                                    audienceFilters: [
                                      {
                                        fieldName: "type",
                                        values: [
                                          {
                                            value: "Spreadsheet",
                                            relationType: "EQUALS",
                                          },
                                          {
                                            value: "Presentation",
                                            relationType: "EQUALS",
                                          },
                                        ],
                                      },
                                    ],
                                    documentId: "<id>",
                                    attribution: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    updatedBy: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                  },
                                  {
                                    audienceFilters: [
                                      {
                                        fieldName: "type",
                                        values: [
                                          {
                                            value: "Spreadsheet",
                                            relationType: "EQUALS",
                                          },
                                          {
                                            value: "Presentation",
                                            relationType: "EQUALS",
                                          },
                                        ],
                                      },
                                    ],
                                    documentId: "<id>",
                                    attribution: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    updatedBy: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                  },
                                ],
                                assignedTo: {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                  metadata: {
                                    type: "FULL_TIME",
                                    title: "Actor",
                                    department: "Movies",
                                    email: "george@example.com",
                                    location: "Hollywood, CA",
                                    phone: "6505551234",
                                    photoUrl: "https://example.com/george.jpg",
                                    startDate: new RFCDate("2000-01-23"),
                                    datasourceProfile: [
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                    ],
                                    querySuggestions: {
                                      suggestions: [
                                        {
                                          query: "app:github type:pull author:mortimer",
                                          label: "Mortimer's PRs",
                                          datasource: "github",
                                        },
                                      ],
                                    },
                                    inviteInfo: {
                                      invites: [
                                        {},
                                        {},
                                        {},
                                      ],
                                    },
                                    badges: [
                                      {
                                        key: "deployment_name_new_hire",
                                        displayName: "New hire",
                                        iconConfig: {
                                          color: "#343CED",
                                          key: "person_icon",
                                          iconType: "GLYPH",
                                          name: "user",
                                        },
                                      },
                                    ],
                                  },
                                },
                                updatedBy: {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                  metadata: {
                                    type: "FULL_TIME",
                                    title: "Actor",
                                    department: "Movies",
                                    email: "george@example.com",
                                    location: "Hollywood, CA",
                                    phone: "6505551234",
                                    photoUrl: "https://example.com/george.jpg",
                                    startDate: new RFCDate("2000-01-23"),
                                    datasourceProfile: [
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                    ],
                                    querySuggestions: {
                                      suggestions: [
                                        {
                                          query: "app:github type:pull author:mortimer",
                                          label: "Mortimer's PRs",
                                          datasource: "github",
                                        },
                                      ],
                                    },
                                    inviteInfo: {
                                      invites: [
                                        {},
                                        {},
                                        {},
                                      ],
                                    },
                                    badges: [
                                      {
                                        key: "deployment_name_new_hire",
                                        displayName: "New hire",
                                        iconConfig: {
                                          color: "#343CED",
                                          key: "person_icon",
                                          iconType: "GLYPH",
                                          name: "user",
                                        },
                                      },
                                    ],
                                  },
                                },
                                collections: [
                                  {
                                    name: "<value>",
                                    description: "perfectly flustered dimly",
                                    addedRoles: [
                                      {
                                        person: {
                                          name: "George Clooney",
                                          obfuscatedId: "abc123",
                                          metadata: {
                                            type: "FULL_TIME",
                                            title: "Actor",
                                            department: "Movies",
                                            email: "george@example.com",
                                            location: "Hollywood, CA",
                                            phone: "6505551234",
                                            photoUrl: "https://example.com/george.jpg",
                                            startDate: new RFCDate("2000-01-23"),
                                            datasourceProfile: [
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                            ],
                                            querySuggestions: {
                                              suggestions: [
                                                {
                                                  query: "app:github type:pull author:mortimer",
                                                  label: "Mortimer's PRs",
                                                  datasource: "github",
                                                },
                                              ],
                                            },
                                            inviteInfo: {
                                              invites: [
                                                {},
                                                {},
                                                {},
                                              ],
                                            },
                                            badges: [
                                              {
                                                key: "deployment_name_new_hire",
                                                displayName: "New hire",
                                                iconConfig: {
                                                  color: "#343CED",
                                                  key: "person_icon",
                                                  iconType: "GLYPH",
                                                  name: "user",
                                                },
                                              },
                                            ],
                                          },
                                        },
                                        role: "ANSWER_MODERATOR",
                                      },
                                      {
                                        person: {
                                          name: "George Clooney",
                                          obfuscatedId: "abc123",
                                          metadata: {
                                            type: "FULL_TIME",
                                            title: "Actor",
                                            department: "Movies",
                                            email: "george@example.com",
                                            location: "Hollywood, CA",
                                            phone: "6505551234",
                                            photoUrl: "https://example.com/george.jpg",
                                            startDate: new RFCDate("2000-01-23"),
                                            datasourceProfile: [
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                            ],
                                            querySuggestions: {
                                              suggestions: [
                                                {
                                                  query: "app:github type:pull author:mortimer",
                                                  label: "Mortimer's PRs",
                                                  datasource: "github",
                                                },
                                              ],
                                            },
                                            inviteInfo: {
                                              invites: [
                                                {},
                                                {},
                                                {},
                                              ],
                                            },
                                            badges: [
                                              {
                                                key: "deployment_name_new_hire",
                                                displayName: "New hire",
                                                iconConfig: {
                                                  color: "#343CED",
                                                  key: "person_icon",
                                                  iconType: "GLYPH",
                                                  name: "user",
                                                },
                                              },
                                            ],
                                          },
                                        },
                                        role: "ANSWER_MODERATOR",
                                      },
                                      {
                                        person: {
                                          name: "George Clooney",
                                          obfuscatedId: "abc123",
                                          metadata: {
                                            type: "FULL_TIME",
                                            title: "Actor",
                                            department: "Movies",
                                            email: "george@example.com",
                                            location: "Hollywood, CA",
                                            phone: "6505551234",
                                            photoUrl: "https://example.com/george.jpg",
                                            startDate: new RFCDate("2000-01-23"),
                                            datasourceProfile: [
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                            ],
                                            querySuggestions: {
                                              suggestions: [
                                                {
                                                  query: "app:github type:pull author:mortimer",
                                                  label: "Mortimer's PRs",
                                                  datasource: "github",
                                                },
                                              ],
                                            },
                                            inviteInfo: {
                                              invites: [
                                                {},
                                                {},
                                                {},
                                              ],
                                            },
                                            badges: [
                                              {
                                                key: "deployment_name_new_hire",
                                                displayName: "New hire",
                                                iconConfig: {
                                                  color: "#343CED",
                                                  key: "person_icon",
                                                  iconType: "GLYPH",
                                                  name: "user",
                                                },
                                              },
                                            ],
                                          },
                                        },
                                        role: "ANSWER_MODERATOR",
                                      },
                                    ],
                                    removedRoles: [
                                      {
                                        person: {
                                          name: "George Clooney",
                                          obfuscatedId: "abc123",
                                          metadata: {
                                            type: "FULL_TIME",
                                            title: "Actor",
                                            department: "Movies",
                                            email: "george@example.com",
                                            location: "Hollywood, CA",
                                            phone: "6505551234",
                                            photoUrl: "https://example.com/george.jpg",
                                            startDate: new RFCDate("2000-01-23"),
                                            datasourceProfile: [
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                            ],
                                            querySuggestions: {
                                              suggestions: [
                                                {
                                                  query: "app:github type:pull author:mortimer",
                                                  label: "Mortimer's PRs",
                                                  datasource: "github",
                                                },
                                              ],
                                            },
                                            inviteInfo: {
                                              invites: [
                                                {},
                                                {},
                                                {},
                                              ],
                                            },
                                            badges: [
                                              {
                                                key: "deployment_name_new_hire",
                                                displayName: "New hire",
                                                iconConfig: {
                                                  color: "#343CED",
                                                  key: "person_icon",
                                                  iconType: "GLYPH",
                                                  name: "user",
                                                },
                                              },
                                            ],
                                          },
                                        },
                                        role: "VERIFIER",
                                      },
                                    ],
                                    audienceFilters: [
                                      {
                                        fieldName: "type",
                                        values: [
                                          {
                                            value: "Spreadsheet",
                                            relationType: "EQUALS",
                                          },
                                          {
                                            value: "Presentation",
                                            relationType: "EQUALS",
                                          },
                                        ],
                                      },
                                    ],
                                    id: 83242,
                                    creator: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    updatedBy: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    items: [
                                      {
                                        collectionId: 420359,
                                        createdBy: {
                                          name: "George Clooney",
                                          obfuscatedId: "abc123",
                                          metadata: {
                                            type: "FULL_TIME",
                                            title: "Actor",
                                            department: "Movies",
                                            email: "george@example.com",
                                            location: "Hollywood, CA",
                                            phone: "6505551234",
                                            photoUrl: "https://example.com/george.jpg",
                                            startDate: new RFCDate("2000-01-23"),
                                            datasourceProfile: [
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                            ],
                                            querySuggestions: {
                                              suggestions: [
                                                {
                                                  query: "app:github type:pull author:mortimer",
                                                  label: "Mortimer's PRs",
                                                  datasource: "github",
                                                },
                                              ],
                                            },
                                            inviteInfo: {
                                              invites: [
                                                {},
                                                {},
                                                {},
                                              ],
                                            },
                                            badges: [
                                              {
                                                key: "deployment_name_new_hire",
                                                displayName: "New hire",
                                                iconConfig: {
                                                  color: "#343CED",
                                                  key: "person_icon",
                                                  iconType: "GLYPH",
                                                  name: "user",
                                                },
                                              },
                                            ],
                                          },
                                        },
                                        shortcut: {
                                          inputAlias: "<value>",
                                          createdBy: {
                                            name: "George Clooney",
                                            obfuscatedId: "abc123",
                                            metadata: {
                                              type: "FULL_TIME",
                                              title: "Actor",
                                              department: "Movies",
                                              email: "george@example.com",
                                              location: "Hollywood, CA",
                                              phone: "6505551234",
                                              photoUrl: "https://example.com/george.jpg",
                                              startDate: new RFCDate("2000-01-23"),
                                              datasourceProfile: [
                                                {
                                                  datasource: "github",
                                                  handle: "<value>",
                                                },
                                                {
                                                  datasource: "github",
                                                  handle: "<value>",
                                                },
                                                {
                                                  datasource: "github",
                                                  handle: "<value>",
                                                },
                                              ],
                                              querySuggestions: {
                                                suggestions: [
                                                  {
                                                    query: "app:github type:pull author:mortimer",
                                                    label: "Mortimer's PRs",
                                                    datasource: "github",
                                                  },
                                                ],
                                              },
                                              inviteInfo: {
                                                invites: [
                                                  {},
                                                  {},
                                                  {},
                                                ],
                                              },
                                              badges: [
                                                {
                                                  key: "deployment_name_new_hire",
                                                  displayName: "New hire",
                                                  iconConfig: {
                                                    color: "#343CED",
                                                    key: "person_icon",
                                                    iconType: "GLYPH",
                                                    name: "user",
                                                  },
                                                },
                                              ],
                                            },
                                          },
                                          updatedBy: {
                                            name: "George Clooney",
                                            obfuscatedId: "abc123",
                                            metadata: {
                                              type: "FULL_TIME",
                                              title: "Actor",
                                              department: "Movies",
                                              email: "george@example.com",
                                              location: "Hollywood, CA",
                                              phone: "6505551234",
                                              photoUrl: "https://example.com/george.jpg",
                                              startDate: new RFCDate("2000-01-23"),
                                              datasourceProfile: [
                                                {
                                                  datasource: "github",
                                                  handle: "<value>",
                                                },
                                                {
                                                  datasource: "github",
                                                  handle: "<value>",
                                                },
                                              ],
                                              querySuggestions: {
                                                suggestions: [
                                                  {
                                                    query: "app:github type:pull author:mortimer",
                                                    label: "Mortimer's PRs",
                                                    datasource: "github",
                                                  },
                                                ],
                                              },
                                              inviteInfo: {
                                                invites: [
                                                  {},
                                                  {},
                                                  {},
                                                ],
                                              },
                                              badges: [
                                                {
                                                  key: "deployment_name_new_hire",
                                                  displayName: "New hire",
                                                  iconConfig: {
                                                    color: "#343CED",
                                                    key: "person_icon",
                                                    iconType: "GLYPH",
                                                    name: "user",
                                                  },
                                                },
                                              ],
                                            },
                                          },
                                          roles: [
                                            {
                                              person: {
                                                name: "George Clooney",
                                                obfuscatedId: "abc123",
                                                metadata: {
                                                  type: "FULL_TIME",
                                                  title: "Actor",
                                                  department: "Movies",
                                                  email: "george@example.com",
                                                  location: "Hollywood, CA",
                                                  phone: "6505551234",
                                                  photoUrl: "https://example.com/george.jpg",
                                                  startDate: new RFCDate("2000-01-23"),
                                                  datasourceProfile: [
                                                    {
                                                      datasource: "github",
                                                      handle: "<value>",
                                                    },
                                                    {
                                                      datasource: "github",
                                                      handle: "<value>",
                                                    },
                                                  ],
                                                  querySuggestions: {
                                                    suggestions: [
                                                      {
                                                        query: "app:github type:pull author:mortimer",
                                                        label: "Mortimer's PRs",
                                                        datasource: "github",
                                                      },
                                                    ],
                                                  },
                                                  inviteInfo: {
                                                    invites: [
                                                      {},
                                                      {},
                                                      {},
                                                    ],
                                                  },
                                                  badges: [
                                                    {
                                                      key: "deployment_name_new_hire",
                                                      displayName: "New hire",
                                                      iconConfig: {
                                                        color: "#343CED",
                                                        key: "person_icon",
                                                        iconType: "GLYPH",
                                                        name: "user",
                                                      },
                                                    },
                                                  ],
                                                },
                                              },
                                              role: "ANSWER_MODERATOR",
                                            },
                                            {
                                              person: {
                                                name: "George Clooney",
                                                obfuscatedId: "abc123",
                                                metadata: {
                                                  type: "FULL_TIME",
                                                  title: "Actor",
                                                  department: "Movies",
                                                  email: "george@example.com",
                                                  location: "Hollywood, CA",
                                                  phone: "6505551234",
                                                  photoUrl: "https://example.com/george.jpg",
                                                  startDate: new RFCDate("2000-01-23"),
                                                  datasourceProfile: [
                                                    {
                                                      datasource: "github",
                                                      handle: "<value>",
                                                    },
                                                    {
                                                      datasource: "github",
                                                      handle: "<value>",
                                                    },
                                                  ],
                                                  querySuggestions: {
                                                    suggestions: [
                                                      {
                                                        query: "app:github type:pull author:mortimer",
                                                        label: "Mortimer's PRs",
                                                        datasource: "github",
                                                      },
                                                    ],
                                                  },
                                                  inviteInfo: {
                                                    invites: [
                                                      {},
                                                      {},
                                                      {},
                                                    ],
                                                  },
                                                  badges: [
                                                    {
                                                      key: "deployment_name_new_hire",
                                                      displayName: "New hire",
                                                      iconConfig: {
                                                        color: "#343CED",
                                                        key: "person_icon",
                                                        iconType: "GLYPH",
                                                        name: "user",
                                                      },
                                                    },
                                                  ],
                                                },
                                              },
                                              role: "ANSWER_MODERATOR",
                                            },
                                          ],
                                        },
                                        itemType: "COLLECTION",
                                      },
                                      {
                                        collectionId: 420359,
                                        createdBy: {
                                          name: "George Clooney",
                                          obfuscatedId: "abc123",
                                          metadata: {
                                            type: "FULL_TIME",
                                            title: "Actor",
                                            department: "Movies",
                                            email: "george@example.com",
                                            location: "Hollywood, CA",
                                            phone: "6505551234",
                                            photoUrl: "https://example.com/george.jpg",
                                            startDate: new RFCDate("2000-01-23"),
                                            datasourceProfile: [
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                            ],
                                            querySuggestions: {
                                              suggestions: [
                                                {
                                                  query: "app:github type:pull author:mortimer",
                                                  label: "Mortimer's PRs",
                                                  datasource: "github",
                                                },
                                              ],
                                            },
                                            inviteInfo: {
                                              invites: [
                                                {},
                                                {},
                                                {},
                                              ],
                                            },
                                            badges: [
                                              {
                                                key: "deployment_name_new_hire",
                                                displayName: "New hire",
                                                iconConfig: {
                                                  color: "#343CED",
                                                  key: "person_icon",
                                                  iconType: "GLYPH",
                                                  name: "user",
                                                },
                                              },
                                            ],
                                          },
                                        },
                                        shortcut: {
                                          inputAlias: "<value>",
                                          createdBy: {
                                            name: "George Clooney",
                                            obfuscatedId: "abc123",
                                            metadata: {
                                              type: "FULL_TIME",
                                              title: "Actor",
                                              department: "Movies",
                                              email: "george@example.com",
                                              location: "Hollywood, CA",
                                              phone: "6505551234",
                                              photoUrl: "https://example.com/george.jpg",
                                              startDate: new RFCDate("2000-01-23"),
                                              datasourceProfile: [
                                                {
                                                  datasource: "github",
                                                  handle: "<value>",
                                                },
                                                {
                                                  datasource: "github",
                                                  handle: "<value>",
                                                },
                                                {
                                                  datasource: "github",
                                                  handle: "<value>",
                                                },
                                              ],
                                              querySuggestions: {
                                                suggestions: [
                                                  {
                                                    query: "app:github type:pull author:mortimer",
                                                    label: "Mortimer's PRs",
                                                    datasource: "github",
                                                  },
                                                ],
                                              },
                                              inviteInfo: {
                                                invites: [
                                                  {},
                                                  {},
                                                  {},
                                                ],
                                              },
                                              badges: [
                                                {
                                                  key: "deployment_name_new_hire",
                                                  displayName: "New hire",
                                                  iconConfig: {
                                                    color: "#343CED",
                                                    key: "person_icon",
                                                    iconType: "GLYPH",
                                                    name: "user",
                                                  },
                                                },
                                              ],
                                            },
                                          },
                                          updatedBy: {
                                            name: "George Clooney",
                                            obfuscatedId: "abc123",
                                            metadata: {
                                              type: "FULL_TIME",
                                              title: "Actor",
                                              department: "Movies",
                                              email: "george@example.com",
                                              location: "Hollywood, CA",
                                              phone: "6505551234",
                                              photoUrl: "https://example.com/george.jpg",
                                              startDate: new RFCDate("2000-01-23"),
                                              datasourceProfile: [
                                                {
                                                  datasource: "github",
                                                  handle: "<value>",
                                                },
                                                {
                                                  datasource: "github",
                                                  handle: "<value>",
                                                },
                                              ],
                                              querySuggestions: {
                                                suggestions: [
                                                  {
                                                    query: "app:github type:pull author:mortimer",
                                                    label: "Mortimer's PRs",
                                                    datasource: "github",
                                                  },
                                                ],
                                              },
                                              inviteInfo: {
                                                invites: [
                                                  {},
                                                  {},
                                                  {},
                                                ],
                                              },
                                              badges: [
                                                {
                                                  key: "deployment_name_new_hire",
                                                  displayName: "New hire",
                                                  iconConfig: {
                                                    color: "#343CED",
                                                    key: "person_icon",
                                                    iconType: "GLYPH",
                                                    name: "user",
                                                  },
                                                },
                                              ],
                                            },
                                          },
                                          roles: [
                                            {
                                              person: {
                                                name: "George Clooney",
                                                obfuscatedId: "abc123",
                                                metadata: {
                                                  type: "FULL_TIME",
                                                  title: "Actor",
                                                  department: "Movies",
                                                  email: "george@example.com",
                                                  location: "Hollywood, CA",
                                                  phone: "6505551234",
                                                  photoUrl: "https://example.com/george.jpg",
                                                  startDate: new RFCDate("2000-01-23"),
                                                  datasourceProfile: [
                                                    {
                                                      datasource: "github",
                                                      handle: "<value>",
                                                    },
                                                    {
                                                      datasource: "github",
                                                      handle: "<value>",
                                                    },
                                                  ],
                                                  querySuggestions: {
                                                    suggestions: [
                                                      {
                                                        query: "app:github type:pull author:mortimer",
                                                        label: "Mortimer's PRs",
                                                        datasource: "github",
                                                      },
                                                    ],
                                                  },
                                                  inviteInfo: {
                                                    invites: [
                                                      {},
                                                      {},
                                                      {},
                                                    ],
                                                  },
                                                  badges: [
                                                    {
                                                      key: "deployment_name_new_hire",
                                                      displayName: "New hire",
                                                      iconConfig: {
                                                        color: "#343CED",
                                                        key: "person_icon",
                                                        iconType: "GLYPH",
                                                        name: "user",
                                                      },
                                                    },
                                                  ],
                                                },
                                              },
                                              role: "ANSWER_MODERATOR",
                                            },
                                            {
                                              person: {
                                                name: "George Clooney",
                                                obfuscatedId: "abc123",
                                                metadata: {
                                                  type: "FULL_TIME",
                                                  title: "Actor",
                                                  department: "Movies",
                                                  email: "george@example.com",
                                                  location: "Hollywood, CA",
                                                  phone: "6505551234",
                                                  photoUrl: "https://example.com/george.jpg",
                                                  startDate: new RFCDate("2000-01-23"),
                                                  datasourceProfile: [
                                                    {
                                                      datasource: "github",
                                                      handle: "<value>",
                                                    },
                                                    {
                                                      datasource: "github",
                                                      handle: "<value>",
                                                    },
                                                  ],
                                                  querySuggestions: {
                                                    suggestions: [
                                                      {
                                                        query: "app:github type:pull author:mortimer",
                                                        label: "Mortimer's PRs",
                                                        datasource: "github",
                                                      },
                                                    ],
                                                  },
                                                  inviteInfo: {
                                                    invites: [
                                                      {},
                                                      {},
                                                      {},
                                                    ],
                                                  },
                                                  badges: [
                                                    {
                                                      key: "deployment_name_new_hire",
                                                      displayName: "New hire",
                                                      iconConfig: {
                                                        color: "#343CED",
                                                        key: "person_icon",
                                                        iconType: "GLYPH",
                                                        name: "user",
                                                      },
                                                    },
                                                  ],
                                                },
                                              },
                                              role: "ANSWER_MODERATOR",
                                            },
                                          ],
                                        },
                                        itemType: "COLLECTION",
                                      },
                                    ],
                                  },
                                ],
                                interactions: {
                                  reacts: [
                                    {
                                      reactors: [
                                        {
                                          name: "George Clooney",
                                          obfuscatedId: "abc123",
                                        },
                                      ],
                                    },
                                    {
                                      reactors: [
                                        {
                                          name: "George Clooney",
                                          obfuscatedId: "abc123",
                                        },
                                      ],
                                    },
                                  ],
                                  shares: [
                                    {
                                      numDaysAgo: 582012,
                                      sharer: {
                                        name: "George Clooney",
                                        obfuscatedId: "abc123",
                                        metadata: {
                                          type: "FULL_TIME",
                                          title: "Actor",
                                          department: "Movies",
                                          email: "george@example.com",
                                          location: "Hollywood, CA",
                                          phone: "6505551234",
                                          photoUrl: "https://example.com/george.jpg",
                                          startDate: new RFCDate("2000-01-23"),
                                          datasourceProfile: [
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                          ],
                                          querySuggestions: {
                                            suggestions: [
                                              {
                                                query: "app:github type:pull author:mortimer",
                                                label: "Mortimer's PRs",
                                                datasource: "github",
                                              },
                                            ],
                                          },
                                          inviteInfo: {
                                            invites: [
                                              {},
                                              {},
                                              {},
                                            ],
                                          },
                                          badges: [
                                            {
                                              key: "deployment_name_new_hire",
                                              displayName: "New hire",
                                              iconConfig: {
                                                color: "#343CED",
                                                key: "person_icon",
                                                iconType: "GLYPH",
                                                name: "user",
                                              },
                                            },
                                          ],
                                        },
                                      },
                                    },
                                  ],
                                },
                                verification: {
                                  state: "DEPRECATED",
                                  metadata: {
                                    lastVerifier: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    reminders: [
                                      {
                                        assignee: {
                                          name: "George Clooney",
                                          obfuscatedId: "abc123",
                                          metadata: {
                                            type: "FULL_TIME",
                                            title: "Actor",
                                            department: "Movies",
                                            email: "george@example.com",
                                            location: "Hollywood, CA",
                                            phone: "6505551234",
                                            photoUrl: "https://example.com/george.jpg",
                                            startDate: new RFCDate("2000-01-23"),
                                            datasourceProfile: [
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                            ],
                                            querySuggestions: {
                                              suggestions: [
                                                {
                                                  query: "app:github type:pull author:mortimer",
                                                  label: "Mortimer's PRs",
                                                  datasource: "github",
                                                },
                                              ],
                                            },
                                            inviteInfo: {
                                              invites: [
                                                {},
                                                {},
                                                {},
                                              ],
                                            },
                                            badges: [
                                              {
                                                key: "deployment_name_new_hire",
                                                displayName: "New hire",
                                                iconConfig: {
                                                  color: "#343CED",
                                                  key: "person_icon",
                                                  iconType: "GLYPH",
                                                  name: "user",
                                                },
                                              },
                                            ],
                                          },
                                        },
                                        requestor: {
                                          name: "George Clooney",
                                          obfuscatedId: "abc123",
                                          metadata: {
                                            type: "FULL_TIME",
                                            title: "Actor",
                                            department: "Movies",
                                            email: "george@example.com",
                                            location: "Hollywood, CA",
                                            phone: "6505551234",
                                            photoUrl: "https://example.com/george.jpg",
                                            startDate: new RFCDate("2000-01-23"),
                                            datasourceProfile: [
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                            ],
                                            querySuggestions: {
                                              suggestions: [
                                                {
                                                  query: "app:github type:pull author:mortimer",
                                                  label: "Mortimer's PRs",
                                                  datasource: "github",
                                                },
                                              ],
                                            },
                                            inviteInfo: {
                                              invites: [
                                                {},
                                                {},
                                                {},
                                              ],
                                            },
                                            badges: [
                                              {
                                                key: "deployment_name_new_hire",
                                                displayName: "New hire",
                                                iconConfig: {
                                                  color: "#343CED",
                                                  key: "person_icon",
                                                  iconType: "GLYPH",
                                                  name: "user",
                                                },
                                              },
                                            ],
                                          },
                                        },
                                        remindAt: 785622,
                                      },
                                      {
                                        assignee: {
                                          name: "George Clooney",
                                          obfuscatedId: "abc123",
                                          metadata: {
                                            type: "FULL_TIME",
                                            title: "Actor",
                                            department: "Movies",
                                            email: "george@example.com",
                                            location: "Hollywood, CA",
                                            phone: "6505551234",
                                            photoUrl: "https://example.com/george.jpg",
                                            startDate: new RFCDate("2000-01-23"),
                                            datasourceProfile: [
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                            ],
                                            querySuggestions: {
                                              suggestions: [
                                                {
                                                  query: "app:github type:pull author:mortimer",
                                                  label: "Mortimer's PRs",
                                                  datasource: "github",
                                                },
                                              ],
                                            },
                                            inviteInfo: {
                                              invites: [
                                                {},
                                                {},
                                                {},
                                              ],
                                            },
                                            badges: [
                                              {
                                                key: "deployment_name_new_hire",
                                                displayName: "New hire",
                                                iconConfig: {
                                                  color: "#343CED",
                                                  key: "person_icon",
                                                  iconType: "GLYPH",
                                                  name: "user",
                                                },
                                              },
                                            ],
                                          },
                                        },
                                        requestor: {
                                          name: "George Clooney",
                                          obfuscatedId: "abc123",
                                          metadata: {
                                            type: "FULL_TIME",
                                            title: "Actor",
                                            department: "Movies",
                                            email: "george@example.com",
                                            location: "Hollywood, CA",
                                            phone: "6505551234",
                                            photoUrl: "https://example.com/george.jpg",
                                            startDate: new RFCDate("2000-01-23"),
                                            datasourceProfile: [
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                            ],
                                            querySuggestions: {
                                              suggestions: [
                                                {
                                                  query: "app:github type:pull author:mortimer",
                                                  label: "Mortimer's PRs",
                                                  datasource: "github",
                                                },
                                              ],
                                            },
                                            inviteInfo: {
                                              invites: [
                                                {},
                                                {},
                                                {},
                                              ],
                                            },
                                            badges: [
                                              {
                                                key: "deployment_name_new_hire",
                                                displayName: "New hire",
                                                iconConfig: {
                                                  color: "#343CED",
                                                  key: "person_icon",
                                                  iconType: "GLYPH",
                                                  name: "user",
                                                },
                                              },
                                            ],
                                          },
                                        },
                                        remindAt: 785622,
                                      },
                                      {
                                        assignee: {
                                          name: "George Clooney",
                                          obfuscatedId: "abc123",
                                          metadata: {
                                            type: "FULL_TIME",
                                            title: "Actor",
                                            department: "Movies",
                                            email: "george@example.com",
                                            location: "Hollywood, CA",
                                            phone: "6505551234",
                                            photoUrl: "https://example.com/george.jpg",
                                            startDate: new RFCDate("2000-01-23"),
                                            datasourceProfile: [
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                            ],
                                            querySuggestions: {
                                              suggestions: [
                                                {
                                                  query: "app:github type:pull author:mortimer",
                                                  label: "Mortimer's PRs",
                                                  datasource: "github",
                                                },
                                              ],
                                            },
                                            inviteInfo: {
                                              invites: [
                                                {},
                                                {},
                                                {},
                                              ],
                                            },
                                            badges: [
                                              {
                                                key: "deployment_name_new_hire",
                                                displayName: "New hire",
                                                iconConfig: {
                                                  color: "#343CED",
                                                  key: "person_icon",
                                                  iconType: "GLYPH",
                                                  name: "user",
                                                },
                                              },
                                            ],
                                          },
                                        },
                                        requestor: {
                                          name: "George Clooney",
                                          obfuscatedId: "abc123",
                                          metadata: {
                                            type: "FULL_TIME",
                                            title: "Actor",
                                            department: "Movies",
                                            email: "george@example.com",
                                            location: "Hollywood, CA",
                                            phone: "6505551234",
                                            photoUrl: "https://example.com/george.jpg",
                                            startDate: new RFCDate("2000-01-23"),
                                            datasourceProfile: [
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                              {
                                                datasource: "github",
                                                handle: "<value>",
                                              },
                                            ],
                                            querySuggestions: {
                                              suggestions: [
                                                {
                                                  query: "app:github type:pull author:mortimer",
                                                  label: "Mortimer's PRs",
                                                  datasource: "github",
                                                },
                                              ],
                                            },
                                            inviteInfo: {
                                              invites: [
                                                {},
                                                {},
                                                {},
                                              ],
                                            },
                                            badges: [
                                              {
                                                key: "deployment_name_new_hire",
                                                displayName: "New hire",
                                                iconConfig: {
                                                  color: "#343CED",
                                                  key: "person_icon",
                                                  iconType: "GLYPH",
                                                  name: "user",
                                                },
                                              },
                                            ],
                                          },
                                        },
                                        remindAt: 785622,
                                      },
                                    ],
                                    lastReminder: {
                                      assignee: {
                                        name: "George Clooney",
                                        obfuscatedId: "abc123",
                                        metadata: {
                                          type: "FULL_TIME",
                                          title: "Actor",
                                          department: "Movies",
                                          email: "george@example.com",
                                          location: "Hollywood, CA",
                                          phone: "6505551234",
                                          photoUrl: "https://example.com/george.jpg",
                                          startDate: new RFCDate("2000-01-23"),
                                          datasourceProfile: [
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                          ],
                                          querySuggestions: {
                                            suggestions: [
                                              {
                                                query: "app:github type:pull author:mortimer",
                                                label: "Mortimer's PRs",
                                                datasource: "github",
                                              },
                                            ],
                                          },
                                          inviteInfo: {
                                            invites: [
                                              {},
                                              {},
                                              {},
                                            ],
                                          },
                                          badges: [
                                            {
                                              key: "deployment_name_new_hire",
                                              displayName: "New hire",
                                              iconConfig: {
                                                color: "#343CED",
                                                key: "person_icon",
                                                iconType: "GLYPH",
                                                name: "user",
                                              },
                                            },
                                          ],
                                        },
                                      },
                                      requestor: {
                                        name: "George Clooney",
                                        obfuscatedId: "abc123",
                                        metadata: {
                                          type: "FULL_TIME",
                                          title: "Actor",
                                          department: "Movies",
                                          email: "george@example.com",
                                          location: "Hollywood, CA",
                                          phone: "6505551234",
                                          photoUrl: "https://example.com/george.jpg",
                                          startDate: new RFCDate("2000-01-23"),
                                          datasourceProfile: [
                                            {
                                              datasource: "github",
                                              handle: "<value>",
                                            },
                                          ],
                                          querySuggestions: {
                                            suggestions: [
                                              {
                                                query: "app:github type:pull author:mortimer",
                                                label: "Mortimer's PRs",
                                                datasource: "github",
                                              },
                                            ],
                                          },
                                          inviteInfo: {
                                            invites: [
                                              {},
                                              {},
                                              {},
                                            ],
                                          },
                                          badges: [
                                            {
                                              key: "deployment_name_new_hire",
                                              displayName: "New hire",
                                              iconConfig: {
                                                color: "#343CED",
                                                key: "person_icon",
                                                iconType: "GLYPH",
                                                name: "user",
                                              },
                                            },
                                          ],
                                        },
                                      },
                                      remindAt: 269943,
                                    },
                                    candidateVerifiers: [
                                      {
                                        name: "George Clooney",
                                        obfuscatedId: "abc123",
                                      },
                                    ],
                                  },
                                },
                                shortcuts: [
                                  {
                                    inputAlias: "<value>",
                                    createdBy: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    updatedBy: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        querySuggestions: {
                                          suggestions: [
                                            {
                                              query: "app:github type:pull author:mortimer",
                                              label: "Mortimer's PRs",
                                              datasource: "github",
                                            },
                                          ],
                                        },
                                        inviteInfo: {
                                          invites: [
                                            {},
                                            {},
                                            {},
                                          ],
                                        },
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                  },
                                ],
                                customData: {
                                  "someCustomField": {},
                                },
                                contactPerson: {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                  metadata: {
                                    type: "FULL_TIME",
                                    title: "Actor",
                                    department: "Movies",
                                    email: "george@example.com",
                                    location: "Hollywood, CA",
                                    phone: "6505551234",
                                    photoUrl: "https://example.com/george.jpg",
                                    startDate: new RFCDate("2000-01-23"),
                                    datasourceProfile: [
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                    ],
                                    querySuggestions: {
                                      suggestions: [
                                        {
                                          query: "app:github type:pull author:mortimer",
                                          label: "Mortimer's PRs",
                                          datasource: "github",
                                        },
                                      ],
                                    },
                                    inviteInfo: {
                                      invites: [
                                        {},
                                        {},
                                        {},
                                      ],
                                    },
                                    badges: [
                                      {
                                        key: "deployment_name_new_hire",
                                        displayName: "New hire",
                                        iconConfig: {
                                          color: "#343CED",
                                          key: "person_icon",
                                          iconType: "GLYPH",
                                          name: "user",
                                        },
                                      },
                                    ],
                                  },
                                },
                              },
                            },
                            title: "title",
                            url: "https://example.com/foo/bar",
                            nativeAppUrl: "slack://foo/bar",
                            snippets: [
                              {
                                mimeType: "mimeType",
                                snippet: "snippet",
                              },
                            ],
                            relatedResults: [
                              {
                                querySuggestion: {
                                  query: "app:github type:pull author:mortimer",
                                  searchProviderInfo: {
                                    name: "Google",
                                    searchLinkUrlTemplate: "https://www.google.com/search?q={query}&hl=en",
                                  },
                                  label: "Mortimer's PRs",
                                  datasource: "github",
                                  requestOptions: {
                                    datasourceFilter: "JIRA",
                                    datasourcesFilter: [
                                      "JIRA",
                                    ],
                                    queryOverridesFacetFilters: true,
                                    facetFilters: [
                                      {
                                        fieldName: "type",
                                        values: [
                                          {
                                            value: "Spreadsheet",
                                            relationType: "EQUALS",
                                          },
                                          {
                                            value: "Presentation",
                                            relationType: "EQUALS",
                                          },
                                        ],
                                      },
                                    ],
                                    facetFilterSets: [
                                      {
                                        filters: [
                                          {
                                            fieldName: "type",
                                            values: [
                                              {
                                                value: "Spreadsheet",
                                                relationType: "EQUALS",
                                              },
                                              {
                                                value: "Presentation",
                                                relationType: "EQUALS",
                                              },
                                            ],
                                          },
                                        ],
                                      },
                                      {
                                        filters: [
                                          {
                                            fieldName: "type",
                                            values: [
                                              {
                                                value: "Spreadsheet",
                                                relationType: "EQUALS",
                                              },
                                              {
                                                value: "Presentation",
                                                relationType: "EQUALS",
                                              },
                                            ],
                                          },
                                        ],
                                      },
                                      {
                                        filters: [
                                          {
                                            fieldName: "type",
                                            values: [
                                              {
                                                value: "Spreadsheet",
                                                relationType: "EQUALS",
                                              },
                                              {
                                                value: "Presentation",
                                                relationType: "EQUALS",
                                              },
                                            ],
                                          },
                                        ],
                                      },
                                    ],
                                    facetBucketSize: 127205,
                                    authTokens: [
                                      {
                                        accessToken: "123abc",
                                        datasource: "gmail",
                                        scope: "email profile https://www.googleapis.com/auth/gmail.readonly",
                                        tokenType: "Bearer",
                                        authUser: "1",
                                      },
                                    ],
                                  },
                                  inputDetails: {
                                    hasCopyPaste: true,
                                  },
                                },
                              },
                              {
                                querySuggestion: {
                                  query: "app:github type:pull author:mortimer",
                                  searchProviderInfo: {
                                    name: "Google",
                                    searchLinkUrlTemplate: "https://www.google.com/search?q={query}&hl=en",
                                  },
                                  label: "Mortimer's PRs",
                                  datasource: "github",
                                  requestOptions: {
                                    datasourceFilter: "JIRA",
                                    datasourcesFilter: [
                                      "JIRA",
                                    ],
                                    queryOverridesFacetFilters: true,
                                    facetFilters: [
                                      {
                                        fieldName: "type",
                                        values: [
                                          {
                                            value: "Spreadsheet",
                                            relationType: "EQUALS",
                                          },
                                          {
                                            value: "Presentation",
                                            relationType: "EQUALS",
                                          },
                                        ],
                                      },
                                    ],
                                    facetFilterSets: [
                                      {
                                        filters: [
                                          {
                                            fieldName: "type",
                                            values: [
                                              {
                                                value: "Spreadsheet",
                                                relationType: "EQUALS",
                                              },
                                              {
                                                value: "Presentation",
                                                relationType: "EQUALS",
                                              },
                                            ],
                                          },
                                        ],
                                      },
                                      {
                                        filters: [
                                          {
                                            fieldName: "type",
                                            values: [
                                              {
                                                value: "Spreadsheet",
                                                relationType: "EQUALS",
                                              },
                                              {
                                                value: "Presentation",
                                                relationType: "EQUALS",
                                              },
                                            ],
                                          },
                                        ],
                                      },
                                      {
                                        filters: [
                                          {
                                            fieldName: "type",
                                            values: [
                                              {
                                                value: "Spreadsheet",
                                                relationType: "EQUALS",
                                              },
                                              {
                                                value: "Presentation",
                                                relationType: "EQUALS",
                                              },
                                            ],
                                          },
                                        ],
                                      },
                                    ],
                                    facetBucketSize: 127205,
                                    authTokens: [
                                      {
                                        accessToken: "123abc",
                                        datasource: "gmail",
                                        scope: "email profile https://www.googleapis.com/auth/gmail.readonly",
                                        tokenType: "Bearer",
                                        authUser: "1",
                                      },
                                    ],
                                  },
                                  inputDetails: {
                                    hasCopyPaste: true,
                                  },
                                },
                              },
                            ],
                            allClusteredResults: [
                              {
                                visibleCountHint: 156570,
                              },
                              {
                                visibleCountHint: 156570,
                              },
                            ],
                            mustIncludeSuggestions: {
                              person: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                            },
                            querySuggestion: {
                              query: "app:github type:pull author:mortimer",
                              searchProviderInfo: {
                                name: "Google",
                                searchLinkUrlTemplate: "https://www.google.com/search?q={query}&hl=en",
                              },
                              label: "Mortimer's PRs",
                              datasource: "github",
                              requestOptions: {
                                datasourceFilter: "JIRA",
                                datasourcesFilter: [
                                  "JIRA",
                                ],
                                queryOverridesFacetFilters: true,
                                facetFilters: [
                                  {
                                    fieldName: "type",
                                    values: [
                                      {
                                        value: "Spreadsheet",
                                        relationType: "EQUALS",
                                      },
                                      {
                                        value: "Presentation",
                                        relationType: "EQUALS",
                                      },
                                    ],
                                  },
                                ],
                                facetFilterSets: [
                                  {
                                    filters: [
                                      {
                                        fieldName: "type",
                                        values: [
                                          {
                                            value: "Spreadsheet",
                                            relationType: "EQUALS",
                                          },
                                          {
                                            value: "Presentation",
                                            relationType: "EQUALS",
                                          },
                                        ],
                                      },
                                    ],
                                  },
                                  {
                                    filters: [
                                      {
                                        fieldName: "type",
                                        values: [
                                          {
                                            value: "Spreadsheet",
                                            relationType: "EQUALS",
                                          },
                                          {
                                            value: "Presentation",
                                            relationType: "EQUALS",
                                          },
                                        ],
                                      },
                                    ],
                                  },
                                  {
                                    filters: [
                                      {
                                        fieldName: "type",
                                        values: [
                                          {
                                            value: "Spreadsheet",
                                            relationType: "EQUALS",
                                          },
                                          {
                                            value: "Presentation",
                                            relationType: "EQUALS",
                                          },
                                        ],
                                      },
                                    ],
                                  },
                                ],
                                facetBucketSize: 974103,
                                authTokens: [
                                  {
                                    accessToken: "123abc",
                                    datasource: "gmail",
                                    scope: "email profile https://www.googleapis.com/auth/gmail.readonly",
                                    tokenType: "Bearer",
                                    authUser: "1",
                                  },
                                ],
                              },
                              inputDetails: {
                                hasCopyPaste: true,
                              },
                            },
                          },
                        },
                        meeting: {
                          attendees: {
                            people: [
                              {
                                person: {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                  metadata: {
                                    type: "FULL_TIME",
                                    title: "Actor",
                                    department: "Movies",
                                    email: "george@example.com",
                                    location: "Hollywood, CA",
                                    phone: "6505551234",
                                    photoUrl: "https://example.com/george.jpg",
                                    startDate: new RFCDate("2000-01-23"),
                                    datasourceProfile: [
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                    ],
                                    querySuggestions: {
                                      suggestions: [
                                        {
                                          query: "app:github type:pull author:mortimer",
                                          label: "Mortimer's PRs",
                                          datasource: "github",
                                        },
                                      ],
                                    },
                                    inviteInfo: {
                                      invites: [
                                        {},
                                        {},
                                        {},
                                      ],
                                    },
                                    badges: [
                                      {
                                        key: "deployment_name_new_hire",
                                        displayName: "New hire",
                                        iconConfig: {
                                          color: "#343CED",
                                          key: "person_icon",
                                          iconType: "GLYPH",
                                          name: "user",
                                        },
                                      },
                                    ],
                                  },
                                },
                              },
                              {
                                person: {
                                  name: "George Clooney",
                                  obfuscatedId: "abc123",
                                  metadata: {
                                    type: "FULL_TIME",
                                    title: "Actor",
                                    department: "Movies",
                                    email: "george@example.com",
                                    location: "Hollywood, CA",
                                    phone: "6505551234",
                                    photoUrl: "https://example.com/george.jpg",
                                    startDate: new RFCDate("2000-01-23"),
                                    datasourceProfile: [
                                      {
                                        datasource: "github",
                                        handle: "<value>",
                                      },
                                    ],
                                    querySuggestions: {
                                      suggestions: [
                                        {
                                          query: "app:github type:pull author:mortimer",
                                          label: "Mortimer's PRs",
                                          datasource: "github",
                                        },
                                      ],
                                    },
                                    inviteInfo: {
                                      invites: [
                                        {},
                                        {},
                                        {},
                                      ],
                                    },
                                    badges: [
                                      {
                                        key: "deployment_name_new_hire",
                                        displayName: "New hire",
                                        iconConfig: {
                                          color: "#343CED",
                                          key: "person_icon",
                                          iconType: "GLYPH",
                                          name: "user",
                                        },
                                      },
                                    ],
                                  },
                                },
                              },
                            ],
                          },
                        },
                        collection: {
                          name: "<value>",
                          description: "rubric sadly clueless whoever torn rim coaxingly",
                          audienceFilters: [
                            {
                              fieldName: "type",
                              values: [
                                {
                                  value: "Spreadsheet",
                                  relationType: "EQUALS",
                                },
                                {
                                  value: "Presentation",
                                  relationType: "EQUALS",
                                },
                              ],
                            },
                          ],
                          id: 690639,
                          creator: {
                            name: "George Clooney",
                            obfuscatedId: "abc123",
                            metadata: {
                              type: "FULL_TIME",
                              title: "Actor",
                              department: "Movies",
                              email: "george@example.com",
                              location: "Hollywood, CA",
                              phone: "6505551234",
                              photoUrl: "https://example.com/george.jpg",
                              startDate: new RFCDate("2000-01-23"),
                              datasourceProfile: [
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                              ],
                              querySuggestions: {
                                suggestions: [
                                  {
                                    query: "app:github type:pull author:mortimer",
                                    label: "Mortimer's PRs",
                                    datasource: "github",
                                  },
                                ],
                              },
                              inviteInfo: {
                                invites: [
                                  {},
                                  {},
                                  {},
                                ],
                              },
                              badges: [
                                {
                                  key: "deployment_name_new_hire",
                                  displayName: "New hire",
                                  iconConfig: {
                                    color: "#343CED",
                                    key: "person_icon",
                                    iconType: "GLYPH",
                                    name: "user",
                                  },
                                },
                              ],
                            },
                          },
                          updatedBy: {
                            name: "George Clooney",
                            obfuscatedId: "abc123",
                            metadata: {
                              type: "FULL_TIME",
                              title: "Actor",
                              department: "Movies",
                              email: "george@example.com",
                              location: "Hollywood, CA",
                              phone: "6505551234",
                              photoUrl: "https://example.com/george.jpg",
                              startDate: new RFCDate("2000-01-23"),
                              datasourceProfile: [
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                              ],
                              querySuggestions: {
                                suggestions: [
                                  {
                                    query: "app:github type:pull author:mortimer",
                                    label: "Mortimer's PRs",
                                    datasource: "github",
                                  },
                                ],
                              },
                              inviteInfo: {
                                invites: [
                                  {},
                                  {},
                                  {},
                                ],
                              },
                              badges: [
                                {
                                  key: "deployment_name_new_hire",
                                  displayName: "New hire",
                                  iconConfig: {
                                    color: "#343CED",
                                    key: "person_icon",
                                    iconType: "GLYPH",
                                    name: "user",
                                  },
                                },
                              ],
                            },
                          },
                        },
                        code: {
                          repoName: "scio",
                          fileName: "README.md",
                          lines: [
                            {},
                          ],
                        },
                        shortcut: {
                          inputAlias: "<value>",
                          createdBy: {
                            name: "George Clooney",
                            obfuscatedId: "abc123",
                            metadata: {
                              type: "FULL_TIME",
                              title: "Actor",
                              department: "Movies",
                              email: "george@example.com",
                              location: "Hollywood, CA",
                              phone: "6505551234",
                              photoUrl: "https://example.com/george.jpg",
                              startDate: new RFCDate("2000-01-23"),
                              datasourceProfile: [
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                              ],
                              querySuggestions: {
                                suggestions: [
                                  {
                                    query: "app:github type:pull author:mortimer",
                                    label: "Mortimer's PRs",
                                    datasource: "github",
                                  },
                                ],
                              },
                              inviteInfo: {
                                invites: [
                                  {},
                                  {},
                                  {},
                                ],
                              },
                              badges: [
                                {
                                  key: "deployment_name_new_hire",
                                  displayName: "New hire",
                                  iconConfig: {
                                    color: "#343CED",
                                    key: "person_icon",
                                    iconType: "GLYPH",
                                    name: "user",
                                  },
                                },
                              ],
                            },
                          },
                          updatedBy: {
                            name: "George Clooney",
                            obfuscatedId: "abc123",
                            metadata: {
                              type: "FULL_TIME",
                              title: "Actor",
                              department: "Movies",
                              email: "george@example.com",
                              location: "Hollywood, CA",
                              phone: "6505551234",
                              photoUrl: "https://example.com/george.jpg",
                              startDate: new RFCDate("2000-01-23"),
                              datasourceProfile: [
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                              ],
                              querySuggestions: {
                                suggestions: [
                                  {
                                    query: "app:github type:pull author:mortimer",
                                    label: "Mortimer's PRs",
                                    datasource: "github",
                                  },
                                ],
                              },
                              inviteInfo: {
                                invites: [
                                  {},
                                  {},
                                  {},
                                ],
                              },
                              badges: [
                                {
                                  key: "deployment_name_new_hire",
                                  displayName: "New hire",
                                  iconConfig: {
                                    color: "#343CED",
                                    key: "person_icon",
                                    iconType: "GLYPH",
                                    name: "user",
                                  },
                                },
                              ],
                            },
                          },
                          destinationDocument: {
                            metadata: {
                              datasource: "datasource",
                              objectType: "Feature Request",
                              container: "container",
                              parentId: "JIRA_EN-1337",
                              mimeType: "mimeType",
                              documentId: "documentId",
                              createTime: new Date("2000-01-23T04:56:07.000Z"),
                              updateTime: new Date("2000-01-23T04:56:07.000Z"),
                              author: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                              owner: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                              components: [
                                "Backend",
                                "Networking",
                              ],
                              status: "[\"Done\"]",
                              assignedTo: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                              updatedBy: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                              verification: {
                                state: "VERIFIED",
                                metadata: {
                                  lastVerifier: {
                                    name: "George Clooney",
                                    obfuscatedId: "abc123",
                                    metadata: {
                                      type: "FULL_TIME",
                                      title: "Actor",
                                      department: "Movies",
                                      email: "george@example.com",
                                      location: "Hollywood, CA",
                                      phone: "6505551234",
                                      photoUrl: "https://example.com/george.jpg",
                                      startDate: new RFCDate("2000-01-23"),
                                      datasourceProfile: [
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                        {
                                          datasource: "github",
                                          handle: "<value>",
                                        },
                                      ],
                                      badges: [
                                        {
                                          key: "deployment_name_new_hire",
                                          displayName: "New hire",
                                          iconConfig: {
                                            color: "#343CED",
                                            key: "person_icon",
                                            iconType: "GLYPH",
                                            name: "user",
                                          },
                                        },
                                      ],
                                    },
                                  },
                                  lastReminder: {
                                    assignee: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    requestor: {
                                      name: "George Clooney",
                                      obfuscatedId: "abc123",
                                      metadata: {
                                        type: "FULL_TIME",
                                        title: "Actor",
                                        department: "Movies",
                                        email: "george@example.com",
                                        location: "Hollywood, CA",
                                        phone: "6505551234",
                                        photoUrl: "https://example.com/george.jpg",
                                        startDate: new RFCDate("2000-01-23"),
                                        datasourceProfile: [
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                          {
                                            datasource: "github",
                                            handle: "<value>",
                                          },
                                        ],
                                        badges: [
                                          {
                                            key: "deployment_name_new_hire",
                                            displayName: "New hire",
                                            iconConfig: {
                                              color: "#343CED",
                                              key: "person_icon",
                                              iconType: "GLYPH",
                                              name: "user",
                                            },
                                          },
                                        ],
                                      },
                                    },
                                    remindAt: 716571,
                                  },
                                },
                              },
                              customData: {
                                "someCustomField": {},
                              },
                              contactPerson: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                            },
                          },
                          roles: [
                            {
                              person: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  querySuggestions: {
                                    suggestions: [
                                      {
                                        query: "app:github type:pull author:mortimer",
                                        label: "Mortimer's PRs",
                                        datasource: "github",
                                      },
                                    ],
                                  },
                                  inviteInfo: {
                                    invites: [
                                      {},
                                      {},
                                      {},
                                    ],
                                  },
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                              role: "ANSWER_MODERATOR",
                            },
                            {
                              person: {
                                name: "George Clooney",
                                obfuscatedId: "abc123",
                                metadata: {
                                  type: "FULL_TIME",
                                  title: "Actor",
                                  department: "Movies",
                                  email: "george@example.com",
                                  location: "Hollywood, CA",
                                  phone: "6505551234",
                                  photoUrl: "https://example.com/george.jpg",
                                  startDate: new RFCDate("2000-01-23"),
                                  datasourceProfile: [
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                    {
                                      datasource: "github",
                                      handle: "<value>",
                                    },
                                  ],
                                  querySuggestions: {
                                    suggestions: [
                                      {
                                        query: "app:github type:pull author:mortimer",
                                        label: "Mortimer's PRs",
                                        datasource: "github",
                                      },
                                    ],
                                  },
                                  inviteInfo: {
                                    invites: [
                                      {},
                                      {},
                                      {},
                                    ],
                                  },
                                  badges: [
                                    {
                                      key: "deployment_name_new_hire",
                                      displayName: "New hire",
                                      iconConfig: {
                                        color: "#343CED",
                                        key: "person_icon",
                                        iconType: "GLYPH",
                                        name: "user",
                                      },
                                    },
                                  ],
                                },
                              },
                              role: "ANSWER_MODERATOR",
                            },
                          ],
                        },
                        querySuggestions: {
                          suggestions: [
                            {
                              query: "app:github type:pull author:mortimer",
                              label: "Mortimer's PRs",
                              datasource: "github",
                            },
                          ],
                          person: {
                            name: "George Clooney",
                            obfuscatedId: "abc123",
                            metadata: {
                              type: "FULL_TIME",
                              title: "Actor",
                              department: "Movies",
                              email: "george@example.com",
                              location: "Hollywood, CA",
                              phone: "6505551234",
                              photoUrl: "https://example.com/george.jpg",
                              startDate: new RFCDate("2000-01-23"),
                              datasourceProfile: [
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                                {
                                  datasource: "github",
                                  handle: "<value>",
                                },
                              ],
                              badges: [
                                {
                                  key: "deployment_name_new_hire",
                                  displayName: "New hire",
                                  iconConfig: {
                                    color: "#343CED",
                                    key: "person_icon",
                                    iconType: "GLYPH",
                                    name: "user",
                                  },
                                },
                              ],
                            },
                          },
                        },
                      },
                    },
                  ],
                },
                audienceFilters: [
                  {
                    fieldName: "type",
                    values: [
                      {
                        value: "Spreadsheet",
                        relationType: "EQUALS",
                      },
                      {
                        value: "Presentation",
                        relationType: "EQUALS",
                      },
                    ],
                  },
                ],
              });

              console.log(result);
            }

            run();
        - lang: go
          label: Go (API Client)
          source: "package main\n\nimport(\n\t\"context\"\n\t\"os\"\n\tapiclientgo \"github.com/gleanwork/api-client-go\"\n\t\"github.com/gleanwork/api-client-go/types\"\n\t\"github.com/gleanwork/api-client-go/models/components\"\n\t\"log\"\n)\n\nfunc main() {\n    ctx := context.Background()\n\n    s := apiclientgo.New(\n        apiclientgo.WithSecurity(os.Getenv(\"GLEAN_API_TOKEN\")),\n        apiclientgo.WithInstance(os.Getenv(\"GLEAN_INSTANCE\")),\n    )\n\n    res, err := s.Client.Announcements.Create(ctx, components.CreateAnnouncementRequest{\n        StartTime: types.MustTimeFromString(\"2023-05-01T12:02:10.816Z\"),\n        EndTime: types.MustTimeFromString(\"2024-03-17T14:19:30.278Z\"),\n        Title: \"<value>\",\n        Body: &components.StructuredText{\n            Text: \"From https://en.wikipedia.org/wiki/Diffuse_sky_radiation, the sky is blue because blue light is more strongly scattered than longer-wavelength light.\",\n            StructuredList: []components.StructuredTextItem{\n                components.StructuredTextItem{\n                    Link: apiclientgo.Pointer(\"https://en.wikipedia.org/wiki/Diffuse_sky_radiation\"),\n                    Document: &components.Document{\n                        Metadata: &components.DocumentMetadata{\n                            Datasource: apiclientgo.Pointer(\"datasource\"),\n                            ObjectType: apiclientgo.Pointer(\"Feature Request\"),\n                            Container: apiclientgo.Pointer(\"container\"),\n                            ParentID: apiclientgo.Pointer(\"JIRA_EN-1337\"),\n                            MimeType: apiclientgo.Pointer(\"mimeType\"),\n                            DocumentID: apiclientgo.Pointer(\"documentId\"),\n                            CreateTime: types.MustNewTimeFromString(\"2000-01-23T04:56:07.000Z\"),\n                            UpdateTime: types.MustNewTimeFromString(\"2000-01-23T04:56:07.000Z\"),\n                            Author: &components.Person{\n                                Name: \"George Clooney\",\n                                ObfuscatedID: \"abc123\",\n                                RelatedDocuments: []components.RelatedDocuments{\n                                    components.RelatedDocuments{\n                                        QuerySuggestion: &components.QuerySuggestion{\n                                            Query: \"app:github type:pull author:mortimer\",\n                                            SearchProviderInfo: &components.SearchProviderInfo{\n                                                Name: apiclientgo.Pointer(\"Google\"),\n                                                SearchLinkURLTemplate: apiclientgo.Pointer(\"https://www.google.com/search?q={query}&hl=en\"),\n                                            },\n                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                            RequestOptions: &components.SearchRequestOptions{\n                                                DatasourceFilter: apiclientgo.Pointer(\"JIRA\"),\n                                                DatasourcesFilter: []string{\n                                                    \"JIRA\",\n                                                },\n                                                QueryOverridesFacetFilters: apiclientgo.Pointer(true),\n                                                FacetFilters: []components.FacetFilter{\n                                                    components.FacetFilter{\n                                                        FieldName: apiclientgo.Pointer(\"type\"),\n                                                        Values: []components.FacetFilterValue{\n                                                            components.FacetFilterValue{\n                                                                Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                RelationType: components.RelationTypeEquals.ToPointer(),\n                                                            },\n                                                            components.FacetFilterValue{\n                                                                Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                RelationType: components.RelationTypeEquals.ToPointer(),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                FacetFilterSets: []components.FacetFilterSet{\n                                                    components.FacetFilterSet{\n                                                        Filters: []components.FacetFilter{\n                                                            components.FacetFilter{\n                                                                FieldName: apiclientgo.Pointer(\"type\"),\n                                                                Values: []components.FacetFilterValue{\n                                                                    components.FacetFilterValue{\n                                                                        Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                    },\n                                                                    components.FacetFilterValue{\n                                                                        Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    components.FacetFilterSet{\n                                                        Filters: []components.FacetFilter{\n                                                            components.FacetFilter{\n                                                                FieldName: apiclientgo.Pointer(\"type\"),\n                                                                Values: []components.FacetFilterValue{\n                                                                    components.FacetFilterValue{\n                                                                        Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                    },\n                                                                    components.FacetFilterValue{\n                                                                        Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                FacetBucketSize: 843281,\n                                                AuthTokens: []components.AuthToken{\n                                                    components.AuthToken{\n                                                        AccessToken: \"123abc\",\n                                                        Datasource: \"gmail\",\n                                                        Scope: apiclientgo.Pointer(\"email profile https://www.googleapis.com/auth/gmail.readonly\"),\n                                                        TokenType: apiclientgo.Pointer(\"Bearer\"),\n                                                        AuthUser: apiclientgo.Pointer(\"1\"),\n                                                    },\n                                                },\n                                            },\n                                            Ranges: []components.TextRange{\n                                                components.TextRange{\n                                                    StartIndex: 925801,\n                                                },\n                                                components.TextRange{\n                                                    StartIndex: 925801,\n                                                },\n                                                components.TextRange{\n                                                    StartIndex: 925801,\n                                                },\n                                            },\n                                            InputDetails: &components.SearchRequestInputDetails{\n                                                HasCopyPaste: apiclientgo.Pointer(true),\n                                            },\n                                        },\n                                        Results: []components.SearchResult{\n                                            components.SearchResult{\n                                                Title: apiclientgo.Pointer(\"title\"),\n                                                URL: \"https://example.com/foo/bar\",\n                                                NativeAppURL: apiclientgo.Pointer(\"slack://foo/bar\"),\n                                                Snippets: []components.SearchResultSnippet{\n                                                    components.SearchResultSnippet{\n                                                        MimeType: apiclientgo.Pointer(\"mimeType\"),\n                                                        Snippet: \"snippet\",\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    components.RelatedDocuments{\n                                        QuerySuggestion: &components.QuerySuggestion{\n                                            Query: \"app:github type:pull author:mortimer\",\n                                            SearchProviderInfo: &components.SearchProviderInfo{\n                                                Name: apiclientgo.Pointer(\"Google\"),\n                                                SearchLinkURLTemplate: apiclientgo.Pointer(\"https://www.google.com/search?q={query}&hl=en\"),\n                                            },\n                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                            RequestOptions: &components.SearchRequestOptions{\n                                                DatasourceFilter: apiclientgo.Pointer(\"JIRA\"),\n                                                DatasourcesFilter: []string{\n                                                    \"JIRA\",\n                                                },\n                                                QueryOverridesFacetFilters: apiclientgo.Pointer(true),\n                                                FacetFilters: []components.FacetFilter{\n                                                    components.FacetFilter{\n                                                        FieldName: apiclientgo.Pointer(\"type\"),\n                                                        Values: []components.FacetFilterValue{\n                                                            components.FacetFilterValue{\n                                                                Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                RelationType: components.RelationTypeEquals.ToPointer(),\n                                                            },\n                                                            components.FacetFilterValue{\n                                                                Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                RelationType: components.RelationTypeEquals.ToPointer(),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                FacetFilterSets: []components.FacetFilterSet{\n                                                    components.FacetFilterSet{\n                                                        Filters: []components.FacetFilter{\n                                                            components.FacetFilter{\n                                                                FieldName: apiclientgo.Pointer(\"type\"),\n                                                                Values: []components.FacetFilterValue{\n                                                                    components.FacetFilterValue{\n                                                                        Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                    },\n                                                                    components.FacetFilterValue{\n                                                                        Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    components.FacetFilterSet{\n                                                        Filters: []components.FacetFilter{\n                                                            components.FacetFilter{\n                                                                FieldName: apiclientgo.Pointer(\"type\"),\n                                                                Values: []components.FacetFilterValue{\n                                                                    components.FacetFilterValue{\n                                                                        Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                    },\n                                                                    components.FacetFilterValue{\n                                                                        Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                FacetBucketSize: 843281,\n                                                AuthTokens: []components.AuthToken{\n                                                    components.AuthToken{\n                                                        AccessToken: \"123abc\",\n                                                        Datasource: \"gmail\",\n                                                        Scope: apiclientgo.Pointer(\"email profile https://www.googleapis.com/auth/gmail.readonly\"),\n                                                        TokenType: apiclientgo.Pointer(\"Bearer\"),\n                                                        AuthUser: apiclientgo.Pointer(\"1\"),\n                                                    },\n                                                },\n                                            },\n                                            Ranges: []components.TextRange{\n                                                components.TextRange{\n                                                    StartIndex: 925801,\n                                                },\n                                                components.TextRange{\n                                                    StartIndex: 925801,\n                                                },\n                                                components.TextRange{\n                                                    StartIndex: 925801,\n                                                },\n                                            },\n                                            InputDetails: &components.SearchRequestInputDetails{\n                                                HasCopyPaste: apiclientgo.Pointer(true),\n                                            },\n                                        },\n                                        Results: []components.SearchResult{\n                                            components.SearchResult{\n                                                Title: apiclientgo.Pointer(\"title\"),\n                                                URL: \"https://example.com/foo/bar\",\n                                                NativeAppURL: apiclientgo.Pointer(\"slack://foo/bar\"),\n                                                Snippets: []components.SearchResultSnippet{\n                                                    components.SearchResultSnippet{\n                                                        MimeType: apiclientgo.Pointer(\"mimeType\"),\n                                                        Snippet: \"snippet\",\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    components.RelatedDocuments{\n                                        QuerySuggestion: &components.QuerySuggestion{\n                                            Query: \"app:github type:pull author:mortimer\",\n                                            SearchProviderInfo: &components.SearchProviderInfo{\n                                                Name: apiclientgo.Pointer(\"Google\"),\n                                                SearchLinkURLTemplate: apiclientgo.Pointer(\"https://www.google.com/search?q={query}&hl=en\"),\n                                            },\n                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                            RequestOptions: &components.SearchRequestOptions{\n                                                DatasourceFilter: apiclientgo.Pointer(\"JIRA\"),\n                                                DatasourcesFilter: []string{\n                                                    \"JIRA\",\n                                                },\n                                                QueryOverridesFacetFilters: apiclientgo.Pointer(true),\n                                                FacetFilters: []components.FacetFilter{\n                                                    components.FacetFilter{\n                                                        FieldName: apiclientgo.Pointer(\"type\"),\n                                                        Values: []components.FacetFilterValue{\n                                                            components.FacetFilterValue{\n                                                                Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                RelationType: components.RelationTypeEquals.ToPointer(),\n                                                            },\n                                                            components.FacetFilterValue{\n                                                                Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                RelationType: components.RelationTypeEquals.ToPointer(),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                FacetFilterSets: []components.FacetFilterSet{\n                                                    components.FacetFilterSet{\n                                                        Filters: []components.FacetFilter{\n                                                            components.FacetFilter{\n                                                                FieldName: apiclientgo.Pointer(\"type\"),\n                                                                Values: []components.FacetFilterValue{\n                                                                    components.FacetFilterValue{\n                                                                        Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                    },\n                                                                    components.FacetFilterValue{\n                                                                        Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    components.FacetFilterSet{\n                                                        Filters: []components.FacetFilter{\n                                                            components.FacetFilter{\n                                                                FieldName: apiclientgo.Pointer(\"type\"),\n                                                                Values: []components.FacetFilterValue{\n                                                                    components.FacetFilterValue{\n                                                                        Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                    },\n                                                                    components.FacetFilterValue{\n                                                                        Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                FacetBucketSize: 843281,\n                                                AuthTokens: []components.AuthToken{\n                                                    components.AuthToken{\n                                                        AccessToken: \"123abc\",\n                                                        Datasource: \"gmail\",\n                                                        Scope: apiclientgo.Pointer(\"email profile https://www.googleapis.com/auth/gmail.readonly\"),\n                                                        TokenType: apiclientgo.Pointer(\"Bearer\"),\n                                                        AuthUser: apiclientgo.Pointer(\"1\"),\n                                                    },\n                                                },\n                                            },\n                                            Ranges: []components.TextRange{\n                                                components.TextRange{\n                                                    StartIndex: 925801,\n                                                },\n                                                components.TextRange{\n                                                    StartIndex: 925801,\n                                                },\n                                                components.TextRange{\n                                                    StartIndex: 925801,\n                                                },\n                                            },\n                                            InputDetails: &components.SearchRequestInputDetails{\n                                                HasCopyPaste: apiclientgo.Pointer(true),\n                                            },\n                                        },\n                                        Results: []components.SearchResult{\n                                            components.SearchResult{\n                                                Title: apiclientgo.Pointer(\"title\"),\n                                                URL: \"https://example.com/foo/bar\",\n                                                NativeAppURL: apiclientgo.Pointer(\"slack://foo/bar\"),\n                                                Snippets: []components.SearchResultSnippet{\n                                                    components.SearchResultSnippet{\n                                                        MimeType: apiclientgo.Pointer(\"mimeType\"),\n                                                        Snippet: \"snippet\",\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                },\n                                Metadata: &components.PersonMetadata{\n                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                    DatasourceProfile: []components.DatasourceProfile{\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                    },\n                                    QuerySuggestions: &components.QuerySuggestionList{\n                                        Suggestions: []components.QuerySuggestion{\n                                            components.QuerySuggestion{\n                                                Query: \"app:github type:pull author:mortimer\",\n                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                            },\n                                        },\n                                    },\n                                    InviteInfo: &components.InviteInfo{\n                                        Invites: []components.ChannelInviteInfo{\n                                            components.ChannelInviteInfo{},\n                                            components.ChannelInviteInfo{},\n                                            components.ChannelInviteInfo{},\n                                        },\n                                    },\n                                    CustomFields: []components.CustomFieldData{\n                                        components.CustomFieldData{\n                                            Label: \"<value>\",\n                                            Values: []components.CustomFieldValue{\n                                                components.CreateCustomFieldValueCustomFieldValueStr(\n                                                    components.CustomFieldValueStr{},\n                                                ),\n                                                components.CreateCustomFieldValueCustomFieldValueStr(\n                                                    components.CustomFieldValueStr{},\n                                                ),\n                                            },\n                                        },\n                                        components.CustomFieldData{\n                                            Label: \"<value>\",\n                                            Values: []components.CustomFieldValue{\n                                                components.CreateCustomFieldValueCustomFieldValueStr(\n                                                    components.CustomFieldValueStr{},\n                                                ),\n                                                components.CreateCustomFieldValueCustomFieldValueStr(\n                                                    components.CustomFieldValueStr{},\n                                                ),\n                                            },\n                                        },\n                                        components.CustomFieldData{\n                                            Label: \"<value>\",\n                                            Values: []components.CustomFieldValue{\n                                                components.CreateCustomFieldValueCustomFieldValueStr(\n                                                    components.CustomFieldValueStr{},\n                                                ),\n                                                components.CreateCustomFieldValueCustomFieldValueStr(\n                                                    components.CustomFieldValueStr{},\n                                                ),\n                                            },\n                                        },\n                                    },\n                                    Badges: []components.Badge{\n                                        components.Badge{\n                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                            IconConfig: &components.IconConfig{\n                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                Name: apiclientgo.Pointer(\"user\"),\n                                            },\n                                        },\n                                    },\n                                },\n                            },\n                            Owner: &components.Person{\n                                Name: \"George Clooney\",\n                                ObfuscatedID: \"abc123\",\n                                Metadata: &components.PersonMetadata{\n                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                    DatasourceProfile: []components.DatasourceProfile{\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                    },\n                                    QuerySuggestions: &components.QuerySuggestionList{\n                                        Suggestions: []components.QuerySuggestion{\n                                            components.QuerySuggestion{\n                                                Query: \"app:github type:pull author:mortimer\",\n                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                            },\n                                        },\n                                    },\n                                    InviteInfo: &components.InviteInfo{\n                                        Invites: []components.ChannelInviteInfo{\n                                            components.ChannelInviteInfo{},\n                                            components.ChannelInviteInfo{},\n                                            components.ChannelInviteInfo{},\n                                        },\n                                    },\n                                    Badges: []components.Badge{\n                                        components.Badge{\n                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                            IconConfig: &components.IconConfig{\n                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                Name: apiclientgo.Pointer(\"user\"),\n                                            },\n                                        },\n                                    },\n                                },\n                            },\n                            MentionedPeople: []components.Person{\n                                components.Person{\n                                    Name: \"George Clooney\",\n                                    ObfuscatedID: \"abc123\",\n                                },\n                            },\n                            Components: []string{\n                                \"Backend\",\n                                \"Networking\",\n                            },\n                            Status: apiclientgo.Pointer(\"[\\\"Done\\\"]\"),\n                            Pins: []components.PinDocument{\n                                components.PinDocument{\n                                    AudienceFilters: []components.FacetFilter{\n                                        components.FacetFilter{\n                                            FieldName: apiclientgo.Pointer(\"type\"),\n                                            Values: []components.FacetFilterValue{\n                                                components.FacetFilterValue{\n                                                    Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                    RelationType: components.RelationTypeEquals.ToPointer(),\n                                                },\n                                                components.FacetFilterValue{\n                                                    Value: apiclientgo.Pointer(\"Presentation\"),\n                                                    RelationType: components.RelationTypeEquals.ToPointer(),\n                                                },\n                                            },\n                                        },\n                                    },\n                                    DocumentID: \"<id>\",\n                                    Attribution: &components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                Suggestions: []components.QuerySuggestion{\n                                                    components.QuerySuggestion{\n                                                        Query: \"app:github type:pull author:mortimer\",\n                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                    },\n                                                },\n                                            },\n                                            InviteInfo: &components.InviteInfo{\n                                                Invites: []components.ChannelInviteInfo{\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    UpdatedBy: &components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                Suggestions: []components.QuerySuggestion{\n                                                    components.QuerySuggestion{\n                                                        Query: \"app:github type:pull author:mortimer\",\n                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                    },\n                                                },\n                                            },\n                                            InviteInfo: &components.InviteInfo{\n                                                Invites: []components.ChannelInviteInfo{\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                },\n                                components.PinDocument{\n                                    AudienceFilters: []components.FacetFilter{\n                                        components.FacetFilter{\n                                            FieldName: apiclientgo.Pointer(\"type\"),\n                                            Values: []components.FacetFilterValue{\n                                                components.FacetFilterValue{\n                                                    Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                    RelationType: components.RelationTypeEquals.ToPointer(),\n                                                },\n                                                components.FacetFilterValue{\n                                                    Value: apiclientgo.Pointer(\"Presentation\"),\n                                                    RelationType: components.RelationTypeEquals.ToPointer(),\n                                                },\n                                            },\n                                        },\n                                    },\n                                    DocumentID: \"<id>\",\n                                    Attribution: &components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                Suggestions: []components.QuerySuggestion{\n                                                    components.QuerySuggestion{\n                                                        Query: \"app:github type:pull author:mortimer\",\n                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                    },\n                                                },\n                                            },\n                                            InviteInfo: &components.InviteInfo{\n                                                Invites: []components.ChannelInviteInfo{\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    UpdatedBy: &components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                Suggestions: []components.QuerySuggestion{\n                                                    components.QuerySuggestion{\n                                                        Query: \"app:github type:pull author:mortimer\",\n                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                    },\n                                                },\n                                            },\n                                            InviteInfo: &components.InviteInfo{\n                                                Invites: []components.ChannelInviteInfo{\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                },\n                            },\n                            AssignedTo: &components.Person{\n                                Name: \"George Clooney\",\n                                ObfuscatedID: \"abc123\",\n                                Metadata: &components.PersonMetadata{\n                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                    DatasourceProfile: []components.DatasourceProfile{\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                    },\n                                    QuerySuggestions: &components.QuerySuggestionList{\n                                        Suggestions: []components.QuerySuggestion{\n                                            components.QuerySuggestion{\n                                                Query: \"app:github type:pull author:mortimer\",\n                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                            },\n                                        },\n                                    },\n                                    InviteInfo: &components.InviteInfo{\n                                        Invites: []components.ChannelInviteInfo{\n                                            components.ChannelInviteInfo{},\n                                            components.ChannelInviteInfo{},\n                                            components.ChannelInviteInfo{},\n                                        },\n                                    },\n                                    Badges: []components.Badge{\n                                        components.Badge{\n                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                            IconConfig: &components.IconConfig{\n                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                Name: apiclientgo.Pointer(\"user\"),\n                                            },\n                                        },\n                                    },\n                                },\n                            },\n                            UpdatedBy: &components.Person{\n                                Name: \"George Clooney\",\n                                ObfuscatedID: \"abc123\",\n                                Metadata: &components.PersonMetadata{\n                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                    DatasourceProfile: []components.DatasourceProfile{\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                    },\n                                    QuerySuggestions: &components.QuerySuggestionList{\n                                        Suggestions: []components.QuerySuggestion{\n                                            components.QuerySuggestion{\n                                                Query: \"app:github type:pull author:mortimer\",\n                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                            },\n                                        },\n                                    },\n                                    InviteInfo: &components.InviteInfo{\n                                        Invites: []components.ChannelInviteInfo{\n                                            components.ChannelInviteInfo{},\n                                            components.ChannelInviteInfo{},\n                                            components.ChannelInviteInfo{},\n                                        },\n                                    },\n                                    Badges: []components.Badge{\n                                        components.Badge{\n                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                            IconConfig: &components.IconConfig{\n                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                Name: apiclientgo.Pointer(\"user\"),\n                                            },\n                                        },\n                                    },\n                                },\n                            },\n                            Collections: []components.Collection{\n                                components.Collection{\n                                    Name: \"<value>\",\n                                    Description: \"perfectly flustered dimly\",\n                                    AddedRoles: []components.UserRoleSpecification{\n                                        components.UserRoleSpecification{\n                                            Person: &components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                        Suggestions: []components.QuerySuggestion{\n                                                            components.QuerySuggestion{\n                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                            },\n                                                        },\n                                                    },\n                                                    InviteInfo: &components.InviteInfo{\n                                                        Invites: []components.ChannelInviteInfo{\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            Role: components.UserRoleAnswerModerator,\n                                        },\n                                        components.UserRoleSpecification{\n                                            Person: &components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                        Suggestions: []components.QuerySuggestion{\n                                                            components.QuerySuggestion{\n                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                            },\n                                                        },\n                                                    },\n                                                    InviteInfo: &components.InviteInfo{\n                                                        Invites: []components.ChannelInviteInfo{\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            Role: components.UserRoleAnswerModerator,\n                                        },\n                                        components.UserRoleSpecification{\n                                            Person: &components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                        Suggestions: []components.QuerySuggestion{\n                                                            components.QuerySuggestion{\n                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                            },\n                                                        },\n                                                    },\n                                                    InviteInfo: &components.InviteInfo{\n                                                        Invites: []components.ChannelInviteInfo{\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            Role: components.UserRoleAnswerModerator,\n                                        },\n                                    },\n                                    RemovedRoles: []components.UserRoleSpecification{\n                                        components.UserRoleSpecification{\n                                            Person: &components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                        Suggestions: []components.QuerySuggestion{\n                                                            components.QuerySuggestion{\n                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                            },\n                                                        },\n                                                    },\n                                                    InviteInfo: &components.InviteInfo{\n                                                        Invites: []components.ChannelInviteInfo{\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            Role: components.UserRoleVerifier,\n                                        },\n                                    },\n                                    AudienceFilters: []components.FacetFilter{\n                                        components.FacetFilter{\n                                            FieldName: apiclientgo.Pointer(\"type\"),\n                                            Values: []components.FacetFilterValue{\n                                                components.FacetFilterValue{\n                                                    Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                    RelationType: components.RelationTypeEquals.ToPointer(),\n                                                },\n                                                components.FacetFilterValue{\n                                                    Value: apiclientgo.Pointer(\"Presentation\"),\n                                                    RelationType: components.RelationTypeEquals.ToPointer(),\n                                                },\n                                            },\n                                        },\n                                    },\n                                    ID: 83242,\n                                    Creator: &components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                Suggestions: []components.QuerySuggestion{\n                                                    components.QuerySuggestion{\n                                                        Query: \"app:github type:pull author:mortimer\",\n                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                    },\n                                                },\n                                            },\n                                            InviteInfo: &components.InviteInfo{\n                                                Invites: []components.ChannelInviteInfo{\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    UpdatedBy: &components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                Suggestions: []components.QuerySuggestion{\n                                                    components.QuerySuggestion{\n                                                        Query: \"app:github type:pull author:mortimer\",\n                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                    },\n                                                },\n                                            },\n                                            InviteInfo: &components.InviteInfo{\n                                                Invites: []components.ChannelInviteInfo{\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    Items: []components.CollectionItem{\n                                        components.CollectionItem{\n                                            CollectionID: 420359,\n                                            CreatedBy: &components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                        Suggestions: []components.QuerySuggestion{\n                                                            components.QuerySuggestion{\n                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                            },\n                                                        },\n                                                    },\n                                                    InviteInfo: &components.InviteInfo{\n                                                        Invites: []components.ChannelInviteInfo{\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            Shortcut: &components.Shortcut{\n                                                InputAlias: \"<value>\",\n                                                CreatedBy: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                UpdatedBy: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                Roles: []components.UserRoleSpecification{\n                                                    components.UserRoleSpecification{\n                                                        Person: &components.Person{\n                                                            Name: \"George Clooney\",\n                                                            ObfuscatedID: \"abc123\",\n                                                            Metadata: &components.PersonMetadata{\n                                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                DatasourceProfile: []components.DatasourceProfile{\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                },\n                                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                                    Suggestions: []components.QuerySuggestion{\n                                                                        components.QuerySuggestion{\n                                                                            Query: \"app:github type:pull author:mortimer\",\n                                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                                InviteInfo: &components.InviteInfo{\n                                                                    Invites: []components.ChannelInviteInfo{\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                    },\n                                                                },\n                                                                Badges: []components.Badge{\n                                                                    components.Badge{\n                                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                        IconConfig: &components.IconConfig{\n                                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                        Role: components.UserRoleAnswerModerator,\n                                                    },\n                                                    components.UserRoleSpecification{\n                                                        Person: &components.Person{\n                                                            Name: \"George Clooney\",\n                                                            ObfuscatedID: \"abc123\",\n                                                            Metadata: &components.PersonMetadata{\n                                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                DatasourceProfile: []components.DatasourceProfile{\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                },\n                                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                                    Suggestions: []components.QuerySuggestion{\n                                                                        components.QuerySuggestion{\n                                                                            Query: \"app:github type:pull author:mortimer\",\n                                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                                InviteInfo: &components.InviteInfo{\n                                                                    Invites: []components.ChannelInviteInfo{\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                    },\n                                                                },\n                                                                Badges: []components.Badge{\n                                                                    components.Badge{\n                                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                        IconConfig: &components.IconConfig{\n                                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                        Role: components.UserRoleAnswerModerator,\n                                                    },\n                                                },\n                                            },\n                                            ItemType: components.CollectionItemItemTypeCollection,\n                                        },\n                                        components.CollectionItem{\n                                            CollectionID: 420359,\n                                            CreatedBy: &components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                        Suggestions: []components.QuerySuggestion{\n                                                            components.QuerySuggestion{\n                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                            },\n                                                        },\n                                                    },\n                                                    InviteInfo: &components.InviteInfo{\n                                                        Invites: []components.ChannelInviteInfo{\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            Shortcut: &components.Shortcut{\n                                                InputAlias: \"<value>\",\n                                                CreatedBy: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                UpdatedBy: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                Roles: []components.UserRoleSpecification{\n                                                    components.UserRoleSpecification{\n                                                        Person: &components.Person{\n                                                            Name: \"George Clooney\",\n                                                            ObfuscatedID: \"abc123\",\n                                                            Metadata: &components.PersonMetadata{\n                                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                DatasourceProfile: []components.DatasourceProfile{\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                },\n                                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                                    Suggestions: []components.QuerySuggestion{\n                                                                        components.QuerySuggestion{\n                                                                            Query: \"app:github type:pull author:mortimer\",\n                                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                                InviteInfo: &components.InviteInfo{\n                                                                    Invites: []components.ChannelInviteInfo{\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                    },\n                                                                },\n                                                                Badges: []components.Badge{\n                                                                    components.Badge{\n                                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                        IconConfig: &components.IconConfig{\n                                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                        Role: components.UserRoleAnswerModerator,\n                                                    },\n                                                    components.UserRoleSpecification{\n                                                        Person: &components.Person{\n                                                            Name: \"George Clooney\",\n                                                            ObfuscatedID: \"abc123\",\n                                                            Metadata: &components.PersonMetadata{\n                                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                DatasourceProfile: []components.DatasourceProfile{\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                },\n                                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                                    Suggestions: []components.QuerySuggestion{\n                                                                        components.QuerySuggestion{\n                                                                            Query: \"app:github type:pull author:mortimer\",\n                                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                                InviteInfo: &components.InviteInfo{\n                                                                    Invites: []components.ChannelInviteInfo{\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                    },\n                                                                },\n                                                                Badges: []components.Badge{\n                                                                    components.Badge{\n                                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                        IconConfig: &components.IconConfig{\n                                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                        Role: components.UserRoleAnswerModerator,\n                                                    },\n                                                },\n                                            },\n                                            ItemType: components.CollectionItemItemTypeCollection,\n                                        },\n                                    },\n                                },\n                            },\n                            Interactions: &components.DocumentInteractions{\n                                Reacts: []components.Reaction{\n                                    components.Reaction{\n                                        Reactors: []components.Person{\n                                            components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                            },\n                                        },\n                                    },\n                                    components.Reaction{\n                                        Reactors: []components.Person{\n                                            components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                            },\n                                        },\n                                    },\n                                },\n                                Shares: []components.Share{\n                                    components.Share{\n                                        NumDaysAgo: 582012,\n                                        Sharer: &components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                            Metadata: &components.PersonMetadata{\n                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                DatasourceProfile: []components.DatasourceProfile{\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                },\n                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                    Suggestions: []components.QuerySuggestion{\n                                                        components.QuerySuggestion{\n                                                            Query: \"app:github type:pull author:mortimer\",\n                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                        },\n                                                    },\n                                                },\n                                                InviteInfo: &components.InviteInfo{\n                                                    Invites: []components.ChannelInviteInfo{\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                    },\n                                                },\n                                                Badges: []components.Badge{\n                                                    components.Badge{\n                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                        IconConfig: &components.IconConfig{\n                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                },\n                            },\n                            Verification: &components.Verification{\n                                State: components.StateDeprecated,\n                                Metadata: &components.VerificationMetadata{\n                                    LastVerifier: &components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                Suggestions: []components.QuerySuggestion{\n                                                    components.QuerySuggestion{\n                                                        Query: \"app:github type:pull author:mortimer\",\n                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                    },\n                                                },\n                                            },\n                                            InviteInfo: &components.InviteInfo{\n                                                Invites: []components.ChannelInviteInfo{\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    Reminders: []components.Reminder{\n                                        components.Reminder{\n                                            Assignee: components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                        Suggestions: []components.QuerySuggestion{\n                                                            components.QuerySuggestion{\n                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                            },\n                                                        },\n                                                    },\n                                                    InviteInfo: &components.InviteInfo{\n                                                        Invites: []components.ChannelInviteInfo{\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            Requestor: &components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                        Suggestions: []components.QuerySuggestion{\n                                                            components.QuerySuggestion{\n                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                            },\n                                                        },\n                                                    },\n                                                    InviteInfo: &components.InviteInfo{\n                                                        Invites: []components.ChannelInviteInfo{\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            RemindAt: 785622,\n                                        },\n                                        components.Reminder{\n                                            Assignee: components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                        Suggestions: []components.QuerySuggestion{\n                                                            components.QuerySuggestion{\n                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                            },\n                                                        },\n                                                    },\n                                                    InviteInfo: &components.InviteInfo{\n                                                        Invites: []components.ChannelInviteInfo{\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            Requestor: &components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                        Suggestions: []components.QuerySuggestion{\n                                                            components.QuerySuggestion{\n                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                            },\n                                                        },\n                                                    },\n                                                    InviteInfo: &components.InviteInfo{\n                                                        Invites: []components.ChannelInviteInfo{\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            RemindAt: 785622,\n                                        },\n                                        components.Reminder{\n                                            Assignee: components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                        Suggestions: []components.QuerySuggestion{\n                                                            components.QuerySuggestion{\n                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                            },\n                                                        },\n                                                    },\n                                                    InviteInfo: &components.InviteInfo{\n                                                        Invites: []components.ChannelInviteInfo{\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            Requestor: &components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                        Suggestions: []components.QuerySuggestion{\n                                                            components.QuerySuggestion{\n                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                            },\n                                                        },\n                                                    },\n                                                    InviteInfo: &components.InviteInfo{\n                                                        Invites: []components.ChannelInviteInfo{\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            RemindAt: 785622,\n                                        },\n                                    },\n                                    LastReminder: &components.Reminder{\n                                        Assignee: components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                            Metadata: &components.PersonMetadata{\n                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                DatasourceProfile: []components.DatasourceProfile{\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                },\n                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                    Suggestions: []components.QuerySuggestion{\n                                                        components.QuerySuggestion{\n                                                            Query: \"app:github type:pull author:mortimer\",\n                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                        },\n                                                    },\n                                                },\n                                                InviteInfo: &components.InviteInfo{\n                                                    Invites: []components.ChannelInviteInfo{\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                    },\n                                                },\n                                                Badges: []components.Badge{\n                                                    components.Badge{\n                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                        IconConfig: &components.IconConfig{\n                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        Requestor: &components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                            Metadata: &components.PersonMetadata{\n                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                DatasourceProfile: []components.DatasourceProfile{\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                },\n                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                    Suggestions: []components.QuerySuggestion{\n                                                        components.QuerySuggestion{\n                                                            Query: \"app:github type:pull author:mortimer\",\n                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                        },\n                                                    },\n                                                },\n                                                InviteInfo: &components.InviteInfo{\n                                                    Invites: []components.ChannelInviteInfo{\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                    },\n                                                },\n                                                Badges: []components.Badge{\n                                                    components.Badge{\n                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                        IconConfig: &components.IconConfig{\n                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        RemindAt: 269943,\n                                    },\n                                    CandidateVerifiers: []components.Person{\n                                        components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                        },\n                                    },\n                                },\n                            },\n                            Shortcuts: []components.Shortcut{\n                                components.Shortcut{\n                                    InputAlias: \"<value>\",\n                                    CreatedBy: &components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                Suggestions: []components.QuerySuggestion{\n                                                    components.QuerySuggestion{\n                                                        Query: \"app:github type:pull author:mortimer\",\n                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                    },\n                                                },\n                                            },\n                                            InviteInfo: &components.InviteInfo{\n                                                Invites: []components.ChannelInviteInfo{\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    UpdatedBy: &components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                Suggestions: []components.QuerySuggestion{\n                                                    components.QuerySuggestion{\n                                                        Query: \"app:github type:pull author:mortimer\",\n                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                    },\n                                                },\n                                            },\n                                            InviteInfo: &components.InviteInfo{\n                                                Invites: []components.ChannelInviteInfo{\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                },\n                            },\n                            CustomData: map[string]components.CustomDataValue{\n                                \"someCustomField\": components.CustomDataValue{},\n                            },\n                            ContactPerson: &components.Person{\n                                Name: \"George Clooney\",\n                                ObfuscatedID: \"abc123\",\n                                Metadata: &components.PersonMetadata{\n                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                    DatasourceProfile: []components.DatasourceProfile{\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                    },\n                                    QuerySuggestions: &components.QuerySuggestionList{\n                                        Suggestions: []components.QuerySuggestion{\n                                            components.QuerySuggestion{\n                                                Query: \"app:github type:pull author:mortimer\",\n                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                            },\n                                        },\n                                    },\n                                    InviteInfo: &components.InviteInfo{\n                                        Invites: []components.ChannelInviteInfo{\n                                            components.ChannelInviteInfo{},\n                                            components.ChannelInviteInfo{},\n                                            components.ChannelInviteInfo{},\n                                        },\n                                    },\n                                    Badges: []components.Badge{\n                                        components.Badge{\n                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                            IconConfig: &components.IconConfig{\n                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                Name: apiclientgo.Pointer(\"user\"),\n                                            },\n                                        },\n                                    },\n                                },\n                            },\n                        },\n                    },\n                    Text: apiclientgo.Pointer(\"Because its wavelengths are shorter, blue light is more strongly scattered than the longer-wavelength lights, red or green. Hence the result that when looking at the sky away from the direct incident sunlight, the human eye perceives the sky to be blue.\"),\n                    StructuredResult: &components.StructuredResult{\n                        Document: &components.Document{\n                            Metadata: &components.DocumentMetadata{\n                                Datasource: apiclientgo.Pointer(\"datasource\"),\n                                ObjectType: apiclientgo.Pointer(\"Feature Request\"),\n                                Container: apiclientgo.Pointer(\"container\"),\n                                ParentID: apiclientgo.Pointer(\"JIRA_EN-1337\"),\n                                MimeType: apiclientgo.Pointer(\"mimeType\"),\n                                DocumentID: apiclientgo.Pointer(\"documentId\"),\n                                CreateTime: types.MustNewTimeFromString(\"2000-01-23T04:56:07.000Z\"),\n                                UpdateTime: types.MustNewTimeFromString(\"2000-01-23T04:56:07.000Z\"),\n                                Author: &components.Person{\n                                    Name: \"George Clooney\",\n                                    ObfuscatedID: \"abc123\",\n                                    RelatedDocuments: []components.RelatedDocuments{\n                                        components.RelatedDocuments{\n                                            QuerySuggestion: &components.QuerySuggestion{\n                                                Query: \"app:github type:pull author:mortimer\",\n                                                SearchProviderInfo: &components.SearchProviderInfo{\n                                                    Name: apiclientgo.Pointer(\"Google\"),\n                                                    SearchLinkURLTemplate: apiclientgo.Pointer(\"https://www.google.com/search?q={query}&hl=en\"),\n                                                },\n                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                RequestOptions: &components.SearchRequestOptions{\n                                                    DatasourceFilter: apiclientgo.Pointer(\"JIRA\"),\n                                                    DatasourcesFilter: []string{\n                                                        \"JIRA\",\n                                                    },\n                                                    QueryOverridesFacetFilters: apiclientgo.Pointer(true),\n                                                    FacetFilters: []components.FacetFilter{\n                                                        components.FacetFilter{\n                                                            FieldName: apiclientgo.Pointer(\"type\"),\n                                                            Values: []components.FacetFilterValue{\n                                                                components.FacetFilterValue{\n                                                                    Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                    RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                },\n                                                                components.FacetFilterValue{\n                                                                    Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                    RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    FacetFilterSets: []components.FacetFilterSet{\n                                                        components.FacetFilterSet{\n                                                            Filters: []components.FacetFilter{\n                                                                components.FacetFilter{\n                                                                    FieldName: apiclientgo.Pointer(\"type\"),\n                                                                    Values: []components.FacetFilterValue{\n                                                                        components.FacetFilterValue{\n                                                                            Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                            RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                        },\n                                                                        components.FacetFilterValue{\n                                                                            Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                            RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                        components.FacetFilterSet{\n                                                            Filters: []components.FacetFilter{\n                                                                components.FacetFilter{\n                                                                    FieldName: apiclientgo.Pointer(\"type\"),\n                                                                    Values: []components.FacetFilterValue{\n                                                                        components.FacetFilterValue{\n                                                                            Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                            RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                        },\n                                                                        components.FacetFilterValue{\n                                                                            Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                            RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    FacetBucketSize: 843281,\n                                                    AuthTokens: []components.AuthToken{\n                                                        components.AuthToken{\n                                                            AccessToken: \"123abc\",\n                                                            Datasource: \"gmail\",\n                                                            Scope: apiclientgo.Pointer(\"email profile https://www.googleapis.com/auth/gmail.readonly\"),\n                                                            TokenType: apiclientgo.Pointer(\"Bearer\"),\n                                                            AuthUser: apiclientgo.Pointer(\"1\"),\n                                                        },\n                                                    },\n                                                },\n                                                Ranges: []components.TextRange{\n                                                    components.TextRange{\n                                                        StartIndex: 925801,\n                                                    },\n                                                    components.TextRange{\n                                                        StartIndex: 925801,\n                                                    },\n                                                    components.TextRange{\n                                                        StartIndex: 925801,\n                                                    },\n                                                },\n                                                InputDetails: &components.SearchRequestInputDetails{\n                                                    HasCopyPaste: apiclientgo.Pointer(true),\n                                                },\n                                            },\n                                            Results: []components.SearchResult{\n                                                components.SearchResult{\n                                                    Title: apiclientgo.Pointer(\"title\"),\n                                                    URL: \"https://example.com/foo/bar\",\n                                                    NativeAppURL: apiclientgo.Pointer(\"slack://foo/bar\"),\n                                                    Snippets: []components.SearchResultSnippet{\n                                                        components.SearchResultSnippet{\n                                                            MimeType: apiclientgo.Pointer(\"mimeType\"),\n                                                            Snippet: \"snippet\",\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        components.RelatedDocuments{\n                                            QuerySuggestion: &components.QuerySuggestion{\n                                                Query: \"app:github type:pull author:mortimer\",\n                                                SearchProviderInfo: &components.SearchProviderInfo{\n                                                    Name: apiclientgo.Pointer(\"Google\"),\n                                                    SearchLinkURLTemplate: apiclientgo.Pointer(\"https://www.google.com/search?q={query}&hl=en\"),\n                                                },\n                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                RequestOptions: &components.SearchRequestOptions{\n                                                    DatasourceFilter: apiclientgo.Pointer(\"JIRA\"),\n                                                    DatasourcesFilter: []string{\n                                                        \"JIRA\",\n                                                    },\n                                                    QueryOverridesFacetFilters: apiclientgo.Pointer(true),\n                                                    FacetFilters: []components.FacetFilter{\n                                                        components.FacetFilter{\n                                                            FieldName: apiclientgo.Pointer(\"type\"),\n                                                            Values: []components.FacetFilterValue{\n                                                                components.FacetFilterValue{\n                                                                    Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                    RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                },\n                                                                components.FacetFilterValue{\n                                                                    Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                    RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    FacetFilterSets: []components.FacetFilterSet{\n                                                        components.FacetFilterSet{\n                                                            Filters: []components.FacetFilter{\n                                                                components.FacetFilter{\n                                                                    FieldName: apiclientgo.Pointer(\"type\"),\n                                                                    Values: []components.FacetFilterValue{\n                                                                        components.FacetFilterValue{\n                                                                            Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                            RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                        },\n                                                                        components.FacetFilterValue{\n                                                                            Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                            RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                        components.FacetFilterSet{\n                                                            Filters: []components.FacetFilter{\n                                                                components.FacetFilter{\n                                                                    FieldName: apiclientgo.Pointer(\"type\"),\n                                                                    Values: []components.FacetFilterValue{\n                                                                        components.FacetFilterValue{\n                                                                            Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                            RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                        },\n                                                                        components.FacetFilterValue{\n                                                                            Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                            RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    FacetBucketSize: 843281,\n                                                    AuthTokens: []components.AuthToken{\n                                                        components.AuthToken{\n                                                            AccessToken: \"123abc\",\n                                                            Datasource: \"gmail\",\n                                                            Scope: apiclientgo.Pointer(\"email profile https://www.googleapis.com/auth/gmail.readonly\"),\n                                                            TokenType: apiclientgo.Pointer(\"Bearer\"),\n                                                            AuthUser: apiclientgo.Pointer(\"1\"),\n                                                        },\n                                                    },\n                                                },\n                                                Ranges: []components.TextRange{\n                                                    components.TextRange{\n                                                        StartIndex: 925801,\n                                                    },\n                                                    components.TextRange{\n                                                        StartIndex: 925801,\n                                                    },\n                                                    components.TextRange{\n                                                        StartIndex: 925801,\n                                                    },\n                                                },\n                                                InputDetails: &components.SearchRequestInputDetails{\n                                                    HasCopyPaste: apiclientgo.Pointer(true),\n                                                },\n                                            },\n                                            Results: []components.SearchResult{\n                                                components.SearchResult{\n                                                    Title: apiclientgo.Pointer(\"title\"),\n                                                    URL: \"https://example.com/foo/bar\",\n                                                    NativeAppURL: apiclientgo.Pointer(\"slack://foo/bar\"),\n                                                    Snippets: []components.SearchResultSnippet{\n                                                        components.SearchResultSnippet{\n                                                            MimeType: apiclientgo.Pointer(\"mimeType\"),\n                                                            Snippet: \"snippet\",\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        components.RelatedDocuments{\n                                            QuerySuggestion: &components.QuerySuggestion{\n                                                Query: \"app:github type:pull author:mortimer\",\n                                                SearchProviderInfo: &components.SearchProviderInfo{\n                                                    Name: apiclientgo.Pointer(\"Google\"),\n                                                    SearchLinkURLTemplate: apiclientgo.Pointer(\"https://www.google.com/search?q={query}&hl=en\"),\n                                                },\n                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                RequestOptions: &components.SearchRequestOptions{\n                                                    DatasourceFilter: apiclientgo.Pointer(\"JIRA\"),\n                                                    DatasourcesFilter: []string{\n                                                        \"JIRA\",\n                                                    },\n                                                    QueryOverridesFacetFilters: apiclientgo.Pointer(true),\n                                                    FacetFilters: []components.FacetFilter{\n                                                        components.FacetFilter{\n                                                            FieldName: apiclientgo.Pointer(\"type\"),\n                                                            Values: []components.FacetFilterValue{\n                                                                components.FacetFilterValue{\n                                                                    Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                    RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                },\n                                                                components.FacetFilterValue{\n                                                                    Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                    RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    FacetFilterSets: []components.FacetFilterSet{\n                                                        components.FacetFilterSet{\n                                                            Filters: []components.FacetFilter{\n                                                                components.FacetFilter{\n                                                                    FieldName: apiclientgo.Pointer(\"type\"),\n                                                                    Values: []components.FacetFilterValue{\n                                                                        components.FacetFilterValue{\n                                                                            Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                            RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                        },\n                                                                        components.FacetFilterValue{\n                                                                            Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                            RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                        components.FacetFilterSet{\n                                                            Filters: []components.FacetFilter{\n                                                                components.FacetFilter{\n                                                                    FieldName: apiclientgo.Pointer(\"type\"),\n                                                                    Values: []components.FacetFilterValue{\n                                                                        components.FacetFilterValue{\n                                                                            Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                            RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                        },\n                                                                        components.FacetFilterValue{\n                                                                            Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                            RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    FacetBucketSize: 843281,\n                                                    AuthTokens: []components.AuthToken{\n                                                        components.AuthToken{\n                                                            AccessToken: \"123abc\",\n                                                            Datasource: \"gmail\",\n                                                            Scope: apiclientgo.Pointer(\"email profile https://www.googleapis.com/auth/gmail.readonly\"),\n                                                            TokenType: apiclientgo.Pointer(\"Bearer\"),\n                                                            AuthUser: apiclientgo.Pointer(\"1\"),\n                                                        },\n                                                    },\n                                                },\n                                                Ranges: []components.TextRange{\n                                                    components.TextRange{\n                                                        StartIndex: 925801,\n                                                    },\n                                                    components.TextRange{\n                                                        StartIndex: 925801,\n                                                    },\n                                                    components.TextRange{\n                                                        StartIndex: 925801,\n                                                    },\n                                                },\n                                                InputDetails: &components.SearchRequestInputDetails{\n                                                    HasCopyPaste: apiclientgo.Pointer(true),\n                                                },\n                                            },\n                                            Results: []components.SearchResult{\n                                                components.SearchResult{\n                                                    Title: apiclientgo.Pointer(\"title\"),\n                                                    URL: \"https://example.com/foo/bar\",\n                                                    NativeAppURL: apiclientgo.Pointer(\"slack://foo/bar\"),\n                                                    Snippets: []components.SearchResultSnippet{\n                                                        components.SearchResultSnippet{\n                                                            MimeType: apiclientgo.Pointer(\"mimeType\"),\n                                                            Snippet: \"snippet\",\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    Metadata: &components.PersonMetadata{\n                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                        DatasourceProfile: []components.DatasourceProfile{\n                                            components.DatasourceProfile{\n                                                Datasource: \"github\",\n                                                Handle: \"<value>\",\n                                            },\n                                            components.DatasourceProfile{\n                                                Datasource: \"github\",\n                                                Handle: \"<value>\",\n                                            },\n                                            components.DatasourceProfile{\n                                                Datasource: \"github\",\n                                                Handle: \"<value>\",\n                                            },\n                                        },\n                                        QuerySuggestions: &components.QuerySuggestionList{\n                                            Suggestions: []components.QuerySuggestion{\n                                                components.QuerySuggestion{\n                                                    Query: \"app:github type:pull author:mortimer\",\n                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                },\n                                            },\n                                        },\n                                        InviteInfo: &components.InviteInfo{\n                                            Invites: []components.ChannelInviteInfo{\n                                                components.ChannelInviteInfo{},\n                                                components.ChannelInviteInfo{},\n                                                components.ChannelInviteInfo{},\n                                            },\n                                        },\n                                        CustomFields: []components.CustomFieldData{\n                                            components.CustomFieldData{\n                                                Label: \"<value>\",\n                                                Values: []components.CustomFieldValue{\n                                                    components.CreateCustomFieldValueCustomFieldValueStr(\n                                                        components.CustomFieldValueStr{},\n                                                    ),\n                                                    components.CreateCustomFieldValueCustomFieldValueStr(\n                                                        components.CustomFieldValueStr{},\n                                                    ),\n                                                },\n                                            },\n                                            components.CustomFieldData{\n                                                Label: \"<value>\",\n                                                Values: []components.CustomFieldValue{\n                                                    components.CreateCustomFieldValueCustomFieldValueStr(\n                                                        components.CustomFieldValueStr{},\n                                                    ),\n                                                    components.CreateCustomFieldValueCustomFieldValueStr(\n                                                        components.CustomFieldValueStr{},\n                                                    ),\n                                                },\n                                            },\n                                            components.CustomFieldData{\n                                                Label: \"<value>\",\n                                                Values: []components.CustomFieldValue{\n                                                    components.CreateCustomFieldValueCustomFieldValueStr(\n                                                        components.CustomFieldValueStr{},\n                                                    ),\n                                                    components.CreateCustomFieldValueCustomFieldValueStr(\n                                                        components.CustomFieldValueStr{},\n                                                    ),\n                                                },\n                                            },\n                                        },\n                                        Badges: []components.Badge{\n                                            components.Badge{\n                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                IconConfig: &components.IconConfig{\n                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                },\n                                            },\n                                        },\n                                    },\n                                },\n                                Owner: &components.Person{\n                                    Name: \"George Clooney\",\n                                    ObfuscatedID: \"abc123\",\n                                    Metadata: &components.PersonMetadata{\n                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                        DatasourceProfile: []components.DatasourceProfile{\n                                            components.DatasourceProfile{\n                                                Datasource: \"github\",\n                                                Handle: \"<value>\",\n                                            },\n                                            components.DatasourceProfile{\n                                                Datasource: \"github\",\n                                                Handle: \"<value>\",\n                                            },\n                                            components.DatasourceProfile{\n                                                Datasource: \"github\",\n                                                Handle: \"<value>\",\n                                            },\n                                        },\n                                        QuerySuggestions: &components.QuerySuggestionList{\n                                            Suggestions: []components.QuerySuggestion{\n                                                components.QuerySuggestion{\n                                                    Query: \"app:github type:pull author:mortimer\",\n                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                },\n                                            },\n                                        },\n                                        InviteInfo: &components.InviteInfo{\n                                            Invites: []components.ChannelInviteInfo{\n                                                components.ChannelInviteInfo{},\n                                                components.ChannelInviteInfo{},\n                                                components.ChannelInviteInfo{},\n                                            },\n                                        },\n                                        Badges: []components.Badge{\n                                            components.Badge{\n                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                IconConfig: &components.IconConfig{\n                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                },\n                                            },\n                                        },\n                                    },\n                                },\n                                MentionedPeople: []components.Person{\n                                    components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                    },\n                                },\n                                Components: []string{\n                                    \"Backend\",\n                                    \"Networking\",\n                                },\n                                Status: apiclientgo.Pointer(\"[\\\"Done\\\"]\"),\n                                Pins: []components.PinDocument{\n                                    components.PinDocument{\n                                        AudienceFilters: []components.FacetFilter{\n                                            components.FacetFilter{\n                                                FieldName: apiclientgo.Pointer(\"type\"),\n                                                Values: []components.FacetFilterValue{\n                                                    components.FacetFilterValue{\n                                                        Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                    },\n                                                    components.FacetFilterValue{\n                                                        Value: apiclientgo.Pointer(\"Presentation\"),\n                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        DocumentID: \"<id>\",\n                                        Attribution: &components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                            Metadata: &components.PersonMetadata{\n                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                DatasourceProfile: []components.DatasourceProfile{\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                },\n                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                    Suggestions: []components.QuerySuggestion{\n                                                        components.QuerySuggestion{\n                                                            Query: \"app:github type:pull author:mortimer\",\n                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                        },\n                                                    },\n                                                },\n                                                InviteInfo: &components.InviteInfo{\n                                                    Invites: []components.ChannelInviteInfo{\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                    },\n                                                },\n                                                Badges: []components.Badge{\n                                                    components.Badge{\n                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                        IconConfig: &components.IconConfig{\n                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        UpdatedBy: &components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                            Metadata: &components.PersonMetadata{\n                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                DatasourceProfile: []components.DatasourceProfile{\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                },\n                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                    Suggestions: []components.QuerySuggestion{\n                                                        components.QuerySuggestion{\n                                                            Query: \"app:github type:pull author:mortimer\",\n                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                        },\n                                                    },\n                                                },\n                                                InviteInfo: &components.InviteInfo{\n                                                    Invites: []components.ChannelInviteInfo{\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                    },\n                                                },\n                                                Badges: []components.Badge{\n                                                    components.Badge{\n                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                        IconConfig: &components.IconConfig{\n                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    components.PinDocument{\n                                        AudienceFilters: []components.FacetFilter{\n                                            components.FacetFilter{\n                                                FieldName: apiclientgo.Pointer(\"type\"),\n                                                Values: []components.FacetFilterValue{\n                                                    components.FacetFilterValue{\n                                                        Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                    },\n                                                    components.FacetFilterValue{\n                                                        Value: apiclientgo.Pointer(\"Presentation\"),\n                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        DocumentID: \"<id>\",\n                                        Attribution: &components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                            Metadata: &components.PersonMetadata{\n                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                DatasourceProfile: []components.DatasourceProfile{\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                },\n                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                    Suggestions: []components.QuerySuggestion{\n                                                        components.QuerySuggestion{\n                                                            Query: \"app:github type:pull author:mortimer\",\n                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                        },\n                                                    },\n                                                },\n                                                InviteInfo: &components.InviteInfo{\n                                                    Invites: []components.ChannelInviteInfo{\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                    },\n                                                },\n                                                Badges: []components.Badge{\n                                                    components.Badge{\n                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                        IconConfig: &components.IconConfig{\n                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        UpdatedBy: &components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                            Metadata: &components.PersonMetadata{\n                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                DatasourceProfile: []components.DatasourceProfile{\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                },\n                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                    Suggestions: []components.QuerySuggestion{\n                                                        components.QuerySuggestion{\n                                                            Query: \"app:github type:pull author:mortimer\",\n                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                        },\n                                                    },\n                                                },\n                                                InviteInfo: &components.InviteInfo{\n                                                    Invites: []components.ChannelInviteInfo{\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                    },\n                                                },\n                                                Badges: []components.Badge{\n                                                    components.Badge{\n                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                        IconConfig: &components.IconConfig{\n                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                },\n                                AssignedTo: &components.Person{\n                                    Name: \"George Clooney\",\n                                    ObfuscatedID: \"abc123\",\n                                    Metadata: &components.PersonMetadata{\n                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                        DatasourceProfile: []components.DatasourceProfile{\n                                            components.DatasourceProfile{\n                                                Datasource: \"github\",\n                                                Handle: \"<value>\",\n                                            },\n                                            components.DatasourceProfile{\n                                                Datasource: \"github\",\n                                                Handle: \"<value>\",\n                                            },\n                                            components.DatasourceProfile{\n                                                Datasource: \"github\",\n                                                Handle: \"<value>\",\n                                            },\n                                        },\n                                        QuerySuggestions: &components.QuerySuggestionList{\n                                            Suggestions: []components.QuerySuggestion{\n                                                components.QuerySuggestion{\n                                                    Query: \"app:github type:pull author:mortimer\",\n                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                },\n                                            },\n                                        },\n                                        InviteInfo: &components.InviteInfo{\n                                            Invites: []components.ChannelInviteInfo{\n                                                components.ChannelInviteInfo{},\n                                                components.ChannelInviteInfo{},\n                                                components.ChannelInviteInfo{},\n                                            },\n                                        },\n                                        Badges: []components.Badge{\n                                            components.Badge{\n                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                IconConfig: &components.IconConfig{\n                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                },\n                                            },\n                                        },\n                                    },\n                                },\n                                UpdatedBy: &components.Person{\n                                    Name: \"George Clooney\",\n                                    ObfuscatedID: \"abc123\",\n                                    Metadata: &components.PersonMetadata{\n                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                        DatasourceProfile: []components.DatasourceProfile{\n                                            components.DatasourceProfile{\n                                                Datasource: \"github\",\n                                                Handle: \"<value>\",\n                                            },\n                                            components.DatasourceProfile{\n                                                Datasource: \"github\",\n                                                Handle: \"<value>\",\n                                            },\n                                            components.DatasourceProfile{\n                                                Datasource: \"github\",\n                                                Handle: \"<value>\",\n                                            },\n                                        },\n                                        QuerySuggestions: &components.QuerySuggestionList{\n                                            Suggestions: []components.QuerySuggestion{\n                                                components.QuerySuggestion{\n                                                    Query: \"app:github type:pull author:mortimer\",\n                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                },\n                                            },\n                                        },\n                                        InviteInfo: &components.InviteInfo{\n                                            Invites: []components.ChannelInviteInfo{\n                                                components.ChannelInviteInfo{},\n                                                components.ChannelInviteInfo{},\n                                                components.ChannelInviteInfo{},\n                                            },\n                                        },\n                                        Badges: []components.Badge{\n                                            components.Badge{\n                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                IconConfig: &components.IconConfig{\n                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                },\n                                            },\n                                        },\n                                    },\n                                },\n                                Collections: []components.Collection{\n                                    components.Collection{\n                                        Name: \"<value>\",\n                                        Description: \"perfectly flustered dimly\",\n                                        AddedRoles: []components.UserRoleSpecification{\n                                            components.UserRoleSpecification{\n                                                Person: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                Role: components.UserRoleAnswerModerator,\n                                            },\n                                            components.UserRoleSpecification{\n                                                Person: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                Role: components.UserRoleAnswerModerator,\n                                            },\n                                            components.UserRoleSpecification{\n                                                Person: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                Role: components.UserRoleAnswerModerator,\n                                            },\n                                        },\n                                        RemovedRoles: []components.UserRoleSpecification{\n                                            components.UserRoleSpecification{\n                                                Person: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                Role: components.UserRoleVerifier,\n                                            },\n                                        },\n                                        AudienceFilters: []components.FacetFilter{\n                                            components.FacetFilter{\n                                                FieldName: apiclientgo.Pointer(\"type\"),\n                                                Values: []components.FacetFilterValue{\n                                                    components.FacetFilterValue{\n                                                        Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                    },\n                                                    components.FacetFilterValue{\n                                                        Value: apiclientgo.Pointer(\"Presentation\"),\n                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        ID: 83242,\n                                        Creator: &components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                            Metadata: &components.PersonMetadata{\n                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                DatasourceProfile: []components.DatasourceProfile{\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                },\n                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                    Suggestions: []components.QuerySuggestion{\n                                                        components.QuerySuggestion{\n                                                            Query: \"app:github type:pull author:mortimer\",\n                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                        },\n                                                    },\n                                                },\n                                                InviteInfo: &components.InviteInfo{\n                                                    Invites: []components.ChannelInviteInfo{\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                    },\n                                                },\n                                                Badges: []components.Badge{\n                                                    components.Badge{\n                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                        IconConfig: &components.IconConfig{\n                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        UpdatedBy: &components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                            Metadata: &components.PersonMetadata{\n                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                DatasourceProfile: []components.DatasourceProfile{\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                },\n                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                    Suggestions: []components.QuerySuggestion{\n                                                        components.QuerySuggestion{\n                                                            Query: \"app:github type:pull author:mortimer\",\n                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                        },\n                                                    },\n                                                },\n                                                InviteInfo: &components.InviteInfo{\n                                                    Invites: []components.ChannelInviteInfo{\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                    },\n                                                },\n                                                Badges: []components.Badge{\n                                                    components.Badge{\n                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                        IconConfig: &components.IconConfig{\n                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        Items: []components.CollectionItem{\n                                            components.CollectionItem{\n                                                CollectionID: 420359,\n                                                CreatedBy: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                Shortcut: &components.Shortcut{\n                                                    InputAlias: \"<value>\",\n                                                    CreatedBy: &components.Person{\n                                                        Name: \"George Clooney\",\n                                                        ObfuscatedID: \"abc123\",\n                                                        Metadata: &components.PersonMetadata{\n                                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                            DatasourceProfile: []components.DatasourceProfile{\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                            },\n                                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                                Suggestions: []components.QuerySuggestion{\n                                                                    components.QuerySuggestion{\n                                                                        Query: \"app:github type:pull author:mortimer\",\n                                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                            InviteInfo: &components.InviteInfo{\n                                                                Invites: []components.ChannelInviteInfo{\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                },\n                                                            },\n                                                            Badges: []components.Badge{\n                                                                components.Badge{\n                                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                    IconConfig: &components.IconConfig{\n                                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    UpdatedBy: &components.Person{\n                                                        Name: \"George Clooney\",\n                                                        ObfuscatedID: \"abc123\",\n                                                        Metadata: &components.PersonMetadata{\n                                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                            DatasourceProfile: []components.DatasourceProfile{\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                            },\n                                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                                Suggestions: []components.QuerySuggestion{\n                                                                    components.QuerySuggestion{\n                                                                        Query: \"app:github type:pull author:mortimer\",\n                                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                            InviteInfo: &components.InviteInfo{\n                                                                Invites: []components.ChannelInviteInfo{\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                },\n                                                            },\n                                                            Badges: []components.Badge{\n                                                                components.Badge{\n                                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                    IconConfig: &components.IconConfig{\n                                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    Roles: []components.UserRoleSpecification{\n                                                        components.UserRoleSpecification{\n                                                            Person: &components.Person{\n                                                                Name: \"George Clooney\",\n                                                                ObfuscatedID: \"abc123\",\n                                                                Metadata: &components.PersonMetadata{\n                                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                                        components.DatasourceProfile{\n                                                                            Datasource: \"github\",\n                                                                            Handle: \"<value>\",\n                                                                        },\n                                                                        components.DatasourceProfile{\n                                                                            Datasource: \"github\",\n                                                                            Handle: \"<value>\",\n                                                                        },\n                                                                    },\n                                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                                        Suggestions: []components.QuerySuggestion{\n                                                                            components.QuerySuggestion{\n                                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                    InviteInfo: &components.InviteInfo{\n                                                                        Invites: []components.ChannelInviteInfo{\n                                                                            components.ChannelInviteInfo{},\n                                                                            components.ChannelInviteInfo{},\n                                                                            components.ChannelInviteInfo{},\n                                                                        },\n                                                                    },\n                                                                    Badges: []components.Badge{\n                                                                        components.Badge{\n                                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                            IconConfig: &components.IconConfig{\n                                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                            Role: components.UserRoleAnswerModerator,\n                                                        },\n                                                        components.UserRoleSpecification{\n                                                            Person: &components.Person{\n                                                                Name: \"George Clooney\",\n                                                                ObfuscatedID: \"abc123\",\n                                                                Metadata: &components.PersonMetadata{\n                                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                                        components.DatasourceProfile{\n                                                                            Datasource: \"github\",\n                                                                            Handle: \"<value>\",\n                                                                        },\n                                                                        components.DatasourceProfile{\n                                                                            Datasource: \"github\",\n                                                                            Handle: \"<value>\",\n                                                                        },\n                                                                    },\n                                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                                        Suggestions: []components.QuerySuggestion{\n                                                                            components.QuerySuggestion{\n                                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                    InviteInfo: &components.InviteInfo{\n                                                                        Invites: []components.ChannelInviteInfo{\n                                                                            components.ChannelInviteInfo{},\n                                                                            components.ChannelInviteInfo{},\n                                                                            components.ChannelInviteInfo{},\n                                                                        },\n                                                                    },\n                                                                    Badges: []components.Badge{\n                                                                        components.Badge{\n                                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                            IconConfig: &components.IconConfig{\n                                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                            Role: components.UserRoleAnswerModerator,\n                                                        },\n                                                    },\n                                                },\n                                                ItemType: components.CollectionItemItemTypeCollection,\n                                            },\n                                            components.CollectionItem{\n                                                CollectionID: 420359,\n                                                CreatedBy: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                Shortcut: &components.Shortcut{\n                                                    InputAlias: \"<value>\",\n                                                    CreatedBy: &components.Person{\n                                                        Name: \"George Clooney\",\n                                                        ObfuscatedID: \"abc123\",\n                                                        Metadata: &components.PersonMetadata{\n                                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                            DatasourceProfile: []components.DatasourceProfile{\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                            },\n                                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                                Suggestions: []components.QuerySuggestion{\n                                                                    components.QuerySuggestion{\n                                                                        Query: \"app:github type:pull author:mortimer\",\n                                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                            InviteInfo: &components.InviteInfo{\n                                                                Invites: []components.ChannelInviteInfo{\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                },\n                                                            },\n                                                            Badges: []components.Badge{\n                                                                components.Badge{\n                                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                    IconConfig: &components.IconConfig{\n                                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    UpdatedBy: &components.Person{\n                                                        Name: \"George Clooney\",\n                                                        ObfuscatedID: \"abc123\",\n                                                        Metadata: &components.PersonMetadata{\n                                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                            DatasourceProfile: []components.DatasourceProfile{\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                            },\n                                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                                Suggestions: []components.QuerySuggestion{\n                                                                    components.QuerySuggestion{\n                                                                        Query: \"app:github type:pull author:mortimer\",\n                                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                            InviteInfo: &components.InviteInfo{\n                                                                Invites: []components.ChannelInviteInfo{\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                },\n                                                            },\n                                                            Badges: []components.Badge{\n                                                                components.Badge{\n                                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                    IconConfig: &components.IconConfig{\n                                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    Roles: []components.UserRoleSpecification{\n                                                        components.UserRoleSpecification{\n                                                            Person: &components.Person{\n                                                                Name: \"George Clooney\",\n                                                                ObfuscatedID: \"abc123\",\n                                                                Metadata: &components.PersonMetadata{\n                                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                                        components.DatasourceProfile{\n                                                                            Datasource: \"github\",\n                                                                            Handle: \"<value>\",\n                                                                        },\n                                                                        components.DatasourceProfile{\n                                                                            Datasource: \"github\",\n                                                                            Handle: \"<value>\",\n                                                                        },\n                                                                    },\n                                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                                        Suggestions: []components.QuerySuggestion{\n                                                                            components.QuerySuggestion{\n                                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                    InviteInfo: &components.InviteInfo{\n                                                                        Invites: []components.ChannelInviteInfo{\n                                                                            components.ChannelInviteInfo{},\n                                                                            components.ChannelInviteInfo{},\n                                                                            components.ChannelInviteInfo{},\n                                                                        },\n                                                                    },\n                                                                    Badges: []components.Badge{\n                                                                        components.Badge{\n                                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                            IconConfig: &components.IconConfig{\n                                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                            Role: components.UserRoleAnswerModerator,\n                                                        },\n                                                        components.UserRoleSpecification{\n                                                            Person: &components.Person{\n                                                                Name: \"George Clooney\",\n                                                                ObfuscatedID: \"abc123\",\n                                                                Metadata: &components.PersonMetadata{\n                                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                                        components.DatasourceProfile{\n                                                                            Datasource: \"github\",\n                                                                            Handle: \"<value>\",\n                                                                        },\n                                                                        components.DatasourceProfile{\n                                                                            Datasource: \"github\",\n                                                                            Handle: \"<value>\",\n                                                                        },\n                                                                    },\n                                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                                        Suggestions: []components.QuerySuggestion{\n                                                                            components.QuerySuggestion{\n                                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                    InviteInfo: &components.InviteInfo{\n                                                                        Invites: []components.ChannelInviteInfo{\n                                                                            components.ChannelInviteInfo{},\n                                                                            components.ChannelInviteInfo{},\n                                                                            components.ChannelInviteInfo{},\n                                                                        },\n                                                                    },\n                                                                    Badges: []components.Badge{\n                                                                        components.Badge{\n                                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                            IconConfig: &components.IconConfig{\n                                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                            Role: components.UserRoleAnswerModerator,\n                                                        },\n                                                    },\n                                                },\n                                                ItemType: components.CollectionItemItemTypeCollection,\n                                            },\n                                        },\n                                    },\n                                },\n                                Interactions: &components.DocumentInteractions{\n                                    Reacts: []components.Reaction{\n                                        components.Reaction{\n                                            Reactors: []components.Person{\n                                                components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                },\n                                            },\n                                        },\n                                        components.Reaction{\n                                            Reactors: []components.Person{\n                                                components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                },\n                                            },\n                                        },\n                                    },\n                                    Shares: []components.Share{\n                                        components.Share{\n                                            NumDaysAgo: 582012,\n                                            Sharer: &components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                        Suggestions: []components.QuerySuggestion{\n                                                            components.QuerySuggestion{\n                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                            },\n                                                        },\n                                                    },\n                                                    InviteInfo: &components.InviteInfo{\n                                                        Invites: []components.ChannelInviteInfo{\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                },\n                                Verification: &components.Verification{\n                                    State: components.StateDeprecated,\n                                    Metadata: &components.VerificationMetadata{\n                                        LastVerifier: &components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                            Metadata: &components.PersonMetadata{\n                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                DatasourceProfile: []components.DatasourceProfile{\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                },\n                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                    Suggestions: []components.QuerySuggestion{\n                                                        components.QuerySuggestion{\n                                                            Query: \"app:github type:pull author:mortimer\",\n                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                        },\n                                                    },\n                                                },\n                                                InviteInfo: &components.InviteInfo{\n                                                    Invites: []components.ChannelInviteInfo{\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                    },\n                                                },\n                                                Badges: []components.Badge{\n                                                    components.Badge{\n                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                        IconConfig: &components.IconConfig{\n                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        Reminders: []components.Reminder{\n                                            components.Reminder{\n                                                Assignee: components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                Requestor: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                RemindAt: 785622,\n                                            },\n                                            components.Reminder{\n                                                Assignee: components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                Requestor: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                RemindAt: 785622,\n                                            },\n                                            components.Reminder{\n                                                Assignee: components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                Requestor: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                RemindAt: 785622,\n                                            },\n                                        },\n                                        LastReminder: &components.Reminder{\n                                            Assignee: components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                        Suggestions: []components.QuerySuggestion{\n                                                            components.QuerySuggestion{\n                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                            },\n                                                        },\n                                                    },\n                                                    InviteInfo: &components.InviteInfo{\n                                                        Invites: []components.ChannelInviteInfo{\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            Requestor: &components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                        Suggestions: []components.QuerySuggestion{\n                                                            components.QuerySuggestion{\n                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                            },\n                                                        },\n                                                    },\n                                                    InviteInfo: &components.InviteInfo{\n                                                        Invites: []components.ChannelInviteInfo{\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            RemindAt: 269943,\n                                        },\n                                        CandidateVerifiers: []components.Person{\n                                            components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                            },\n                                        },\n                                    },\n                                },\n                                Shortcuts: []components.Shortcut{\n                                    components.Shortcut{\n                                        InputAlias: \"<value>\",\n                                        CreatedBy: &components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                            Metadata: &components.PersonMetadata{\n                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                DatasourceProfile: []components.DatasourceProfile{\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                },\n                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                    Suggestions: []components.QuerySuggestion{\n                                                        components.QuerySuggestion{\n                                                            Query: \"app:github type:pull author:mortimer\",\n                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                        },\n                                                    },\n                                                },\n                                                InviteInfo: &components.InviteInfo{\n                                                    Invites: []components.ChannelInviteInfo{\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                    },\n                                                },\n                                                Badges: []components.Badge{\n                                                    components.Badge{\n                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                        IconConfig: &components.IconConfig{\n                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        UpdatedBy: &components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                            Metadata: &components.PersonMetadata{\n                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                DatasourceProfile: []components.DatasourceProfile{\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                },\n                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                    Suggestions: []components.QuerySuggestion{\n                                                        components.QuerySuggestion{\n                                                            Query: \"app:github type:pull author:mortimer\",\n                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                        },\n                                                    },\n                                                },\n                                                InviteInfo: &components.InviteInfo{\n                                                    Invites: []components.ChannelInviteInfo{\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                    },\n                                                },\n                                                Badges: []components.Badge{\n                                                    components.Badge{\n                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                        IconConfig: &components.IconConfig{\n                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                },\n                                CustomData: map[string]components.CustomDataValue{\n                                    \"someCustomField\": components.CustomDataValue{},\n                                },\n                                ContactPerson: &components.Person{\n                                    Name: \"George Clooney\",\n                                    ObfuscatedID: \"abc123\",\n                                    Metadata: &components.PersonMetadata{\n                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                        DatasourceProfile: []components.DatasourceProfile{\n                                            components.DatasourceProfile{\n                                                Datasource: \"github\",\n                                                Handle: \"<value>\",\n                                            },\n                                            components.DatasourceProfile{\n                                                Datasource: \"github\",\n                                                Handle: \"<value>\",\n                                            },\n                                        },\n                                        QuerySuggestions: &components.QuerySuggestionList{\n                                            Suggestions: []components.QuerySuggestion{\n                                                components.QuerySuggestion{\n                                                    Query: \"app:github type:pull author:mortimer\",\n                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                },\n                                            },\n                                        },\n                                        InviteInfo: &components.InviteInfo{\n                                            Invites: []components.ChannelInviteInfo{\n                                                components.ChannelInviteInfo{},\n                                                components.ChannelInviteInfo{},\n                                                components.ChannelInviteInfo{},\n                                            },\n                                        },\n                                        Badges: []components.Badge{\n                                            components.Badge{\n                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                IconConfig: &components.IconConfig{\n                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                },\n                                            },\n                                        },\n                                    },\n                                },\n                            },\n                        },\n                        Person: &components.Person{\n                            Name: \"George Clooney\",\n                            ObfuscatedID: \"abc123\",\n                            Metadata: &components.PersonMetadata{\n                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                Title: apiclientgo.Pointer(\"Actor\"),\n                                Department: apiclientgo.Pointer(\"Movies\"),\n                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                DatasourceProfile: []components.DatasourceProfile{\n                                    components.DatasourceProfile{\n                                        Datasource: \"github\",\n                                        Handle: \"<value>\",\n                                    },\n                                },\n                                QuerySuggestions: &components.QuerySuggestionList{\n                                    Suggestions: []components.QuerySuggestion{\n                                        components.QuerySuggestion{\n                                            Query: \"app:github type:pull author:mortimer\",\n                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                        },\n                                    },\n                                },\n                                InviteInfo: &components.InviteInfo{\n                                    Invites: []components.ChannelInviteInfo{\n                                        components.ChannelInviteInfo{},\n                                        components.ChannelInviteInfo{},\n                                        components.ChannelInviteInfo{},\n                                    },\n                                },\n                                Badges: []components.Badge{\n                                    components.Badge{\n                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                        IconConfig: &components.IconConfig{\n                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                            Name: apiclientgo.Pointer(\"user\"),\n                                        },\n                                    },\n                                },\n                            },\n                        },\n                        Customer: &components.Customer{\n                            ID: \"<id>\",\n                            Company: components.Company{\n                                Name: \"<value>\",\n                                Location: apiclientgo.Pointer(\"New York City\"),\n                                Industry: apiclientgo.Pointer(\"Finances\"),\n                                About: apiclientgo.Pointer(\"Financial, software, data, and media company headquartered in Midtown Manhattan, New York City\"),\n                            },\n                            Poc: []components.Person{\n                                components.Person{\n                                    Name: \"George Clooney\",\n                                    ObfuscatedID: \"abc123\",\n                                },\n                            },\n                            Notes: apiclientgo.Pointer(\"CIO is interested in trying out the product.\"),\n                        },\n                        Team: &components.Team{\n                            ID: \"<id>\",\n                            Name: \"<value>\",\n                            Members: []components.PersonToTeamRelationship{\n                                components.PersonToTeamRelationship{\n                                    Person: components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                Suggestions: []components.QuerySuggestion{\n                                                    components.QuerySuggestion{\n                                                        Query: \"app:github type:pull author:mortimer\",\n                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                    },\n                                                },\n                                            },\n                                            InviteInfo: &components.InviteInfo{\n                                                Invites: []components.ChannelInviteInfo{\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                },\n                                components.PersonToTeamRelationship{\n                                    Person: components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                Suggestions: []components.QuerySuggestion{\n                                                    components.QuerySuggestion{\n                                                        Query: \"app:github type:pull author:mortimer\",\n                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                    },\n                                                },\n                                            },\n                                            InviteInfo: &components.InviteInfo{\n                                                Invites: []components.ChannelInviteInfo{\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                },\n                                components.PersonToTeamRelationship{\n                                    Person: components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                Suggestions: []components.QuerySuggestion{\n                                                    components.QuerySuggestion{\n                                                        Query: \"app:github type:pull author:mortimer\",\n                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                    },\n                                                },\n                                            },\n                                            InviteInfo: &components.InviteInfo{\n                                                Invites: []components.ChannelInviteInfo{\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                },\n                            },\n                            DatasourceProfiles: []components.DatasourceProfile{\n                                components.DatasourceProfile{\n                                    Datasource: \"github\",\n                                    Handle: \"<value>\",\n                                },\n                            },\n                        },\n                        Answer: &components.Answer{\n                            ID: 3,\n                            DocID: apiclientgo.Pointer(\"ANSWERS_answer_3\"),\n                            Question: apiclientgo.Pointer(\"Why is the sky blue?\"),\n                            BodyText: apiclientgo.Pointer(\"From https://en.wikipedia.org/wiki/Diffuse_sky_radiation, the sky is blue because blue light is more strongly scattered than longer-wavelength light.\"),\n                            AudienceFilters: []components.FacetFilter{\n                                components.FacetFilter{\n                                    FieldName: apiclientgo.Pointer(\"type\"),\n                                    Values: []components.FacetFilterValue{\n                                        components.FacetFilterValue{\n                                            Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                            RelationType: components.RelationTypeEquals.ToPointer(),\n                                        },\n                                        components.FacetFilterValue{\n                                            Value: apiclientgo.Pointer(\"Presentation\"),\n                                            RelationType: components.RelationTypeEquals.ToPointer(),\n                                        },\n                                    },\n                                },\n                            },\n                            Likes: &components.AnswerLikes{\n                                LikedBy: []components.AnswerLike{\n                                    components.AnswerLike{\n                                        User: &components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                            Metadata: &components.PersonMetadata{\n                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                DatasourceProfile: []components.DatasourceProfile{\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                },\n                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                    Suggestions: []components.QuerySuggestion{\n                                                        components.QuerySuggestion{\n                                                            Query: \"app:github type:pull author:mortimer\",\n                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                        },\n                                                    },\n                                                },\n                                                InviteInfo: &components.InviteInfo{\n                                                    Invites: []components.ChannelInviteInfo{\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                    },\n                                                },\n                                                Badges: []components.Badge{\n                                                    components.Badge{\n                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                        IconConfig: &components.IconConfig{\n                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    components.AnswerLike{\n                                        User: &components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                            Metadata: &components.PersonMetadata{\n                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                DatasourceProfile: []components.DatasourceProfile{\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                },\n                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                    Suggestions: []components.QuerySuggestion{\n                                                        components.QuerySuggestion{\n                                                            Query: \"app:github type:pull author:mortimer\",\n                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                        },\n                                                    },\n                                                },\n                                                InviteInfo: &components.InviteInfo{\n                                                    Invites: []components.ChannelInviteInfo{\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                    },\n                                                },\n                                                Badges: []components.Badge{\n                                                    components.Badge{\n                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                        IconConfig: &components.IconConfig{\n                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                },\n                                LikedByUser: false,\n                                NumLikes: 572532,\n                            },\n                            Author: &components.Person{\n                                Name: \"George Clooney\",\n                                ObfuscatedID: \"abc123\",\n                                Metadata: &components.PersonMetadata{\n                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                    DatasourceProfile: []components.DatasourceProfile{\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                    },\n                                    QuerySuggestions: &components.QuerySuggestionList{\n                                        Suggestions: []components.QuerySuggestion{\n                                            components.QuerySuggestion{\n                                                Query: \"app:github type:pull author:mortimer\",\n                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                            },\n                                        },\n                                    },\n                                    InviteInfo: &components.InviteInfo{\n                                        Invites: []components.ChannelInviteInfo{\n                                            components.ChannelInviteInfo{},\n                                            components.ChannelInviteInfo{},\n                                            components.ChannelInviteInfo{},\n                                        },\n                                    },\n                                    Badges: []components.Badge{\n                                        components.Badge{\n                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                            IconConfig: &components.IconConfig{\n                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                Name: apiclientgo.Pointer(\"user\"),\n                                            },\n                                        },\n                                    },\n                                },\n                            },\n                            UpdatedBy: &components.Person{\n                                Name: \"George Clooney\",\n                                ObfuscatedID: \"abc123\",\n                                Metadata: &components.PersonMetadata{\n                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                    DatasourceProfile: []components.DatasourceProfile{\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                    },\n                                    QuerySuggestions: &components.QuerySuggestionList{\n                                        Suggestions: []components.QuerySuggestion{\n                                            components.QuerySuggestion{\n                                                Query: \"app:github type:pull author:mortimer\",\n                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                            },\n                                        },\n                                    },\n                                    InviteInfo: &components.InviteInfo{\n                                        Invites: []components.ChannelInviteInfo{\n                                            components.ChannelInviteInfo{},\n                                            components.ChannelInviteInfo{},\n                                            components.ChannelInviteInfo{},\n                                        },\n                                    },\n                                    Badges: []components.Badge{\n                                        components.Badge{\n                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                            IconConfig: &components.IconConfig{\n                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                Name: apiclientgo.Pointer(\"user\"),\n                                            },\n                                        },\n                                    },\n                                },\n                            },\n                            Verification: &components.Verification{\n                                State: components.StateDeprecated,\n                                Metadata: &components.VerificationMetadata{\n                                    LastVerifier: &components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                Suggestions: []components.QuerySuggestion{\n                                                    components.QuerySuggestion{\n                                                        Query: \"app:github type:pull author:mortimer\",\n                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                    },\n                                                },\n                                            },\n                                            InviteInfo: &components.InviteInfo{\n                                                Invites: []components.ChannelInviteInfo{\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    Document: &components.Document{\n                                        Metadata: &components.DocumentMetadata{\n                                            Datasource: apiclientgo.Pointer(\"datasource\"),\n                                            ObjectType: apiclientgo.Pointer(\"Feature Request\"),\n                                            Container: apiclientgo.Pointer(\"container\"),\n                                            ParentID: apiclientgo.Pointer(\"JIRA_EN-1337\"),\n                                            MimeType: apiclientgo.Pointer(\"mimeType\"),\n                                            DocumentID: apiclientgo.Pointer(\"documentId\"),\n                                            CreateTime: types.MustNewTimeFromString(\"2000-01-23T04:56:07.000Z\"),\n                                            UpdateTime: types.MustNewTimeFromString(\"2000-01-23T04:56:07.000Z\"),\n                                            Author: &components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            Owner: &components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            Components: []string{\n                                                \"Backend\",\n                                                \"Networking\",\n                                            },\n                                            Status: apiclientgo.Pointer(\"[\\\"Done\\\"]\"),\n                                            AssignedTo: &components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            UpdatedBy: &components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            CustomData: map[string]components.CustomDataValue{\n                                                \"someCustomField\": components.CustomDataValue{},\n                                            },\n                                            ContactPerson: &components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    Reminders: []components.Reminder{\n                                        components.Reminder{\n                                            Assignee: components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                        Suggestions: []components.QuerySuggestion{\n                                                            components.QuerySuggestion{\n                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                            },\n                                                        },\n                                                    },\n                                                    InviteInfo: &components.InviteInfo{\n                                                        Invites: []components.ChannelInviteInfo{\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            Requestor: &components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                        Suggestions: []components.QuerySuggestion{\n                                                            components.QuerySuggestion{\n                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                            },\n                                                        },\n                                                    },\n                                                    InviteInfo: &components.InviteInfo{\n                                                        Invites: []components.ChannelInviteInfo{\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            RemindAt: 785622,\n                                        },\n                                        components.Reminder{\n                                            Assignee: components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                        Suggestions: []components.QuerySuggestion{\n                                                            components.QuerySuggestion{\n                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                            },\n                                                        },\n                                                    },\n                                                    InviteInfo: &components.InviteInfo{\n                                                        Invites: []components.ChannelInviteInfo{\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            Requestor: &components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                        Suggestions: []components.QuerySuggestion{\n                                                            components.QuerySuggestion{\n                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                            },\n                                                        },\n                                                    },\n                                                    InviteInfo: &components.InviteInfo{\n                                                        Invites: []components.ChannelInviteInfo{\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            RemindAt: 785622,\n                                        },\n                                        components.Reminder{\n                                            Assignee: components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                        Suggestions: []components.QuerySuggestion{\n                                                            components.QuerySuggestion{\n                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                            },\n                                                        },\n                                                    },\n                                                    InviteInfo: &components.InviteInfo{\n                                                        Invites: []components.ChannelInviteInfo{\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            Requestor: &components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                        Suggestions: []components.QuerySuggestion{\n                                                            components.QuerySuggestion{\n                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                            },\n                                                        },\n                                                    },\n                                                    InviteInfo: &components.InviteInfo{\n                                                        Invites: []components.ChannelInviteInfo{\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            RemindAt: 785622,\n                                        },\n                                    },\n                                    LastReminder: &components.Reminder{\n                                        Assignee: components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                            Metadata: &components.PersonMetadata{\n                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                DatasourceProfile: []components.DatasourceProfile{\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                },\n                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                    Suggestions: []components.QuerySuggestion{\n                                                        components.QuerySuggestion{\n                                                            Query: \"app:github type:pull author:mortimer\",\n                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                        },\n                                                    },\n                                                },\n                                                InviteInfo: &components.InviteInfo{\n                                                    Invites: []components.ChannelInviteInfo{\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                    },\n                                                },\n                                                Badges: []components.Badge{\n                                                    components.Badge{\n                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                        IconConfig: &components.IconConfig{\n                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        Requestor: &components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                            Metadata: &components.PersonMetadata{\n                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                DatasourceProfile: []components.DatasourceProfile{\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                },\n                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                    Suggestions: []components.QuerySuggestion{\n                                                        components.QuerySuggestion{\n                                                            Query: \"app:github type:pull author:mortimer\",\n                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                        },\n                                                    },\n                                                },\n                                                InviteInfo: &components.InviteInfo{\n                                                    Invites: []components.ChannelInviteInfo{\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                    },\n                                                },\n                                                Badges: []components.Badge{\n                                                    components.Badge{\n                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                        IconConfig: &components.IconConfig{\n                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        RemindAt: 269943,\n                                    },\n                                    CandidateVerifiers: []components.Person{\n                                        components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                        },\n                                    },\n                                },\n                            },\n                            SourceDocument: &components.Document{\n                                Metadata: &components.DocumentMetadata{\n                                    Datasource: apiclientgo.Pointer(\"datasource\"),\n                                    ObjectType: apiclientgo.Pointer(\"Feature Request\"),\n                                    Container: apiclientgo.Pointer(\"container\"),\n                                    ParentID: apiclientgo.Pointer(\"JIRA_EN-1337\"),\n                                    MimeType: apiclientgo.Pointer(\"mimeType\"),\n                                    DocumentID: apiclientgo.Pointer(\"documentId\"),\n                                    CreateTime: types.MustNewTimeFromString(\"2000-01-23T04:56:07.000Z\"),\n                                    UpdateTime: types.MustNewTimeFromString(\"2000-01-23T04:56:07.000Z\"),\n                                    Author: &components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                Suggestions: []components.QuerySuggestion{\n                                                    components.QuerySuggestion{\n                                                        Query: \"app:github type:pull author:mortimer\",\n                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                    },\n                                                },\n                                            },\n                                            InviteInfo: &components.InviteInfo{\n                                                Invites: []components.ChannelInviteInfo{\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    Owner: &components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                Suggestions: []components.QuerySuggestion{\n                                                    components.QuerySuggestion{\n                                                        Query: \"app:github type:pull author:mortimer\",\n                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                    },\n                                                },\n                                            },\n                                            InviteInfo: &components.InviteInfo{\n                                                Invites: []components.ChannelInviteInfo{\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    Components: []string{\n                                        \"Backend\",\n                                        \"Networking\",\n                                    },\n                                    Status: apiclientgo.Pointer(\"[\\\"Done\\\"]\"),\n                                    AssignedTo: &components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                Suggestions: []components.QuerySuggestion{\n                                                    components.QuerySuggestion{\n                                                        Query: \"app:github type:pull author:mortimer\",\n                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                    },\n                                                },\n                                            },\n                                            InviteInfo: &components.InviteInfo{\n                                                Invites: []components.ChannelInviteInfo{\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    UpdatedBy: &components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                Suggestions: []components.QuerySuggestion{\n                                                    components.QuerySuggestion{\n                                                        Query: \"app:github type:pull author:mortimer\",\n                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                    },\n                                                },\n                                            },\n                                            InviteInfo: &components.InviteInfo{\n                                                Invites: []components.ChannelInviteInfo{\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    Interactions: &components.DocumentInteractions{\n                                        Reacts: []components.Reaction{\n                                            components.Reaction{\n                                                Reactors: []components.Person{\n                                                    components.Person{\n                                                        Name: \"George Clooney\",\n                                                        ObfuscatedID: \"abc123\",\n                                                    },\n                                                },\n                                            },\n                                            components.Reaction{\n                                                Reactors: []components.Person{\n                                                    components.Person{\n                                                        Name: \"George Clooney\",\n                                                        ObfuscatedID: \"abc123\",\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        Shares: []components.Share{\n                                            components.Share{\n                                                NumDaysAgo: 582012,\n                                                Sharer: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    Verification: &components.Verification{\n                                        State: components.StateDeprecated,\n                                        Metadata: &components.VerificationMetadata{\n                                            LastVerifier: &components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                        Suggestions: []components.QuerySuggestion{\n                                                            components.QuerySuggestion{\n                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                            },\n                                                        },\n                                                    },\n                                                    InviteInfo: &components.InviteInfo{\n                                                        Invites: []components.ChannelInviteInfo{\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            Reminders: []components.Reminder{\n                                                components.Reminder{\n                                                    Assignee: components.Person{\n                                                        Name: \"George Clooney\",\n                                                        ObfuscatedID: \"abc123\",\n                                                        Metadata: &components.PersonMetadata{\n                                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                            DatasourceProfile: []components.DatasourceProfile{\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                            },\n                                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                                Suggestions: []components.QuerySuggestion{\n                                                                    components.QuerySuggestion{\n                                                                        Query: \"app:github type:pull author:mortimer\",\n                                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                            InviteInfo: &components.InviteInfo{\n                                                                Invites: []components.ChannelInviteInfo{\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                },\n                                                            },\n                                                            Badges: []components.Badge{\n                                                                components.Badge{\n                                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                    IconConfig: &components.IconConfig{\n                                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    Requestor: &components.Person{\n                                                        Name: \"George Clooney\",\n                                                        ObfuscatedID: \"abc123\",\n                                                        Metadata: &components.PersonMetadata{\n                                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                            DatasourceProfile: []components.DatasourceProfile{\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                            },\n                                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                                Suggestions: []components.QuerySuggestion{\n                                                                    components.QuerySuggestion{\n                                                                        Query: \"app:github type:pull author:mortimer\",\n                                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                            InviteInfo: &components.InviteInfo{\n                                                                Invites: []components.ChannelInviteInfo{\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                },\n                                                            },\n                                                            Badges: []components.Badge{\n                                                                components.Badge{\n                                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                    IconConfig: &components.IconConfig{\n                                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    RemindAt: 785622,\n                                                },\n                                                components.Reminder{\n                                                    Assignee: components.Person{\n                                                        Name: \"George Clooney\",\n                                                        ObfuscatedID: \"abc123\",\n                                                        Metadata: &components.PersonMetadata{\n                                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                            DatasourceProfile: []components.DatasourceProfile{\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                            },\n                                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                                Suggestions: []components.QuerySuggestion{\n                                                                    components.QuerySuggestion{\n                                                                        Query: \"app:github type:pull author:mortimer\",\n                                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                            InviteInfo: &components.InviteInfo{\n                                                                Invites: []components.ChannelInviteInfo{\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                },\n                                                            },\n                                                            Badges: []components.Badge{\n                                                                components.Badge{\n                                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                    IconConfig: &components.IconConfig{\n                                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    Requestor: &components.Person{\n                                                        Name: \"George Clooney\",\n                                                        ObfuscatedID: \"abc123\",\n                                                        Metadata: &components.PersonMetadata{\n                                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                            DatasourceProfile: []components.DatasourceProfile{\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                            },\n                                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                                Suggestions: []components.QuerySuggestion{\n                                                                    components.QuerySuggestion{\n                                                                        Query: \"app:github type:pull author:mortimer\",\n                                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                            InviteInfo: &components.InviteInfo{\n                                                                Invites: []components.ChannelInviteInfo{\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                },\n                                                            },\n                                                            Badges: []components.Badge{\n                                                                components.Badge{\n                                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                    IconConfig: &components.IconConfig{\n                                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    RemindAt: 785622,\n                                                },\n                                                components.Reminder{\n                                                    Assignee: components.Person{\n                                                        Name: \"George Clooney\",\n                                                        ObfuscatedID: \"abc123\",\n                                                        Metadata: &components.PersonMetadata{\n                                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                            DatasourceProfile: []components.DatasourceProfile{\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                            },\n                                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                                Suggestions: []components.QuerySuggestion{\n                                                                    components.QuerySuggestion{\n                                                                        Query: \"app:github type:pull author:mortimer\",\n                                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                            InviteInfo: &components.InviteInfo{\n                                                                Invites: []components.ChannelInviteInfo{\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                },\n                                                            },\n                                                            Badges: []components.Badge{\n                                                                components.Badge{\n                                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                    IconConfig: &components.IconConfig{\n                                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    Requestor: &components.Person{\n                                                        Name: \"George Clooney\",\n                                                        ObfuscatedID: \"abc123\",\n                                                        Metadata: &components.PersonMetadata{\n                                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                            DatasourceProfile: []components.DatasourceProfile{\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                            },\n                                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                                Suggestions: []components.QuerySuggestion{\n                                                                    components.QuerySuggestion{\n                                                                        Query: \"app:github type:pull author:mortimer\",\n                                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                            InviteInfo: &components.InviteInfo{\n                                                                Invites: []components.ChannelInviteInfo{\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                },\n                                                            },\n                                                            Badges: []components.Badge{\n                                                                components.Badge{\n                                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                    IconConfig: &components.IconConfig{\n                                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    RemindAt: 785622,\n                                                },\n                                            },\n                                            LastReminder: &components.Reminder{\n                                                Assignee: components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                Requestor: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                RemindAt: 269943,\n                                            },\n                                            CandidateVerifiers: []components.Person{\n                                                components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                },\n                                            },\n                                        },\n                                    },\n                                    CustomData: map[string]components.CustomDataValue{\n                                        \"someCustomField\": components.CustomDataValue{},\n                                    },\n                                    ContactPerson: &components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                Suggestions: []components.QuerySuggestion{\n                                                    components.QuerySuggestion{\n                                                        Query: \"app:github type:pull author:mortimer\",\n                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                    },\n                                                },\n                                            },\n                                            InviteInfo: &components.InviteInfo{\n                                                Invites: []components.ChannelInviteInfo{\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                },\n                            },\n                        },\n                        ExtractedQnA: &components.ExtractedQnA{\n                            QuestionResult: &components.SearchResult{\n                                Document: &components.Document{\n                                    Metadata: &components.DocumentMetadata{\n                                        Datasource: apiclientgo.Pointer(\"datasource\"),\n                                        ObjectType: apiclientgo.Pointer(\"Feature Request\"),\n                                        Container: apiclientgo.Pointer(\"container\"),\n                                        ParentID: apiclientgo.Pointer(\"JIRA_EN-1337\"),\n                                        MimeType: apiclientgo.Pointer(\"mimeType\"),\n                                        DocumentID: apiclientgo.Pointer(\"documentId\"),\n                                        CreateTime: types.MustNewTimeFromString(\"2000-01-23T04:56:07.000Z\"),\n                                        UpdateTime: types.MustNewTimeFromString(\"2000-01-23T04:56:07.000Z\"),\n                                        Author: &components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                            RelatedDocuments: []components.RelatedDocuments{\n                                                components.RelatedDocuments{\n                                                    QuerySuggestion: &components.QuerySuggestion{\n                                                        Query: \"app:github type:pull author:mortimer\",\n                                                        SearchProviderInfo: &components.SearchProviderInfo{\n                                                            Name: apiclientgo.Pointer(\"Google\"),\n                                                            SearchLinkURLTemplate: apiclientgo.Pointer(\"https://www.google.com/search?q={query}&hl=en\"),\n                                                        },\n                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                        RequestOptions: &components.SearchRequestOptions{\n                                                            DatasourceFilter: apiclientgo.Pointer(\"JIRA\"),\n                                                            DatasourcesFilter: []string{\n                                                                \"JIRA\",\n                                                            },\n                                                            QueryOverridesFacetFilters: apiclientgo.Pointer(true),\n                                                            FacetFilters: []components.FacetFilter{\n                                                                components.FacetFilter{\n                                                                    FieldName: apiclientgo.Pointer(\"type\"),\n                                                                    Values: []components.FacetFilterValue{\n                                                                        components.FacetFilterValue{\n                                                                            Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                            RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                        },\n                                                                        components.FacetFilterValue{\n                                                                            Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                            RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                            FacetFilterSets: []components.FacetFilterSet{\n                                                                components.FacetFilterSet{\n                                                                    Filters: []components.FacetFilter{\n                                                                        components.FacetFilter{\n                                                                            FieldName: apiclientgo.Pointer(\"type\"),\n                                                                            Values: []components.FacetFilterValue{\n                                                                                components.FacetFilterValue{\n                                                                                    Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                                    RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                                },\n                                                                                components.FacetFilterValue{\n                                                                                    Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                                    RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                                },\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                },\n                                                                components.FacetFilterSet{\n                                                                    Filters: []components.FacetFilter{\n                                                                        components.FacetFilter{\n                                                                            FieldName: apiclientgo.Pointer(\"type\"),\n                                                                            Values: []components.FacetFilterValue{\n                                                                                components.FacetFilterValue{\n                                                                                    Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                                    RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                                },\n                                                                                components.FacetFilterValue{\n                                                                                    Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                                    RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                                },\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                            FacetBucketSize: 843281,\n                                                            AuthTokens: []components.AuthToken{\n                                                                components.AuthToken{\n                                                                    AccessToken: \"123abc\",\n                                                                    Datasource: \"gmail\",\n                                                                    Scope: apiclientgo.Pointer(\"email profile https://www.googleapis.com/auth/gmail.readonly\"),\n                                                                    TokenType: apiclientgo.Pointer(\"Bearer\"),\n                                                                    AuthUser: apiclientgo.Pointer(\"1\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        Ranges: []components.TextRange{\n                                                            components.TextRange{\n                                                                StartIndex: 925801,\n                                                            },\n                                                            components.TextRange{\n                                                                StartIndex: 925801,\n                                                            },\n                                                            components.TextRange{\n                                                                StartIndex: 925801,\n                                                            },\n                                                        },\n                                                        InputDetails: &components.SearchRequestInputDetails{\n                                                            HasCopyPaste: apiclientgo.Pointer(true),\n                                                        },\n                                                    },\n                                                },\n                                                components.RelatedDocuments{\n                                                    QuerySuggestion: &components.QuerySuggestion{\n                                                        Query: \"app:github type:pull author:mortimer\",\n                                                        SearchProviderInfo: &components.SearchProviderInfo{\n                                                            Name: apiclientgo.Pointer(\"Google\"),\n                                                            SearchLinkURLTemplate: apiclientgo.Pointer(\"https://www.google.com/search?q={query}&hl=en\"),\n                                                        },\n                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                        RequestOptions: &components.SearchRequestOptions{\n                                                            DatasourceFilter: apiclientgo.Pointer(\"JIRA\"),\n                                                            DatasourcesFilter: []string{\n                                                                \"JIRA\",\n                                                            },\n                                                            QueryOverridesFacetFilters: apiclientgo.Pointer(true),\n                                                            FacetFilters: []components.FacetFilter{\n                                                                components.FacetFilter{\n                                                                    FieldName: apiclientgo.Pointer(\"type\"),\n                                                                    Values: []components.FacetFilterValue{\n                                                                        components.FacetFilterValue{\n                                                                            Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                            RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                        },\n                                                                        components.FacetFilterValue{\n                                                                            Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                            RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                            FacetFilterSets: []components.FacetFilterSet{\n                                                                components.FacetFilterSet{\n                                                                    Filters: []components.FacetFilter{\n                                                                        components.FacetFilter{\n                                                                            FieldName: apiclientgo.Pointer(\"type\"),\n                                                                            Values: []components.FacetFilterValue{\n                                                                                components.FacetFilterValue{\n                                                                                    Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                                    RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                                },\n                                                                                components.FacetFilterValue{\n                                                                                    Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                                    RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                                },\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                },\n                                                                components.FacetFilterSet{\n                                                                    Filters: []components.FacetFilter{\n                                                                        components.FacetFilter{\n                                                                            FieldName: apiclientgo.Pointer(\"type\"),\n                                                                            Values: []components.FacetFilterValue{\n                                                                                components.FacetFilterValue{\n                                                                                    Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                                    RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                                },\n                                                                                components.FacetFilterValue{\n                                                                                    Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                                    RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                                },\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                            FacetBucketSize: 843281,\n                                                            AuthTokens: []components.AuthToken{\n                                                                components.AuthToken{\n                                                                    AccessToken: \"123abc\",\n                                                                    Datasource: \"gmail\",\n                                                                    Scope: apiclientgo.Pointer(\"email profile https://www.googleapis.com/auth/gmail.readonly\"),\n                                                                    TokenType: apiclientgo.Pointer(\"Bearer\"),\n                                                                    AuthUser: apiclientgo.Pointer(\"1\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        Ranges: []components.TextRange{\n                                                            components.TextRange{\n                                                                StartIndex: 925801,\n                                                            },\n                                                            components.TextRange{\n                                                                StartIndex: 925801,\n                                                            },\n                                                            components.TextRange{\n                                                                StartIndex: 925801,\n                                                            },\n                                                        },\n                                                        InputDetails: &components.SearchRequestInputDetails{\n                                                            HasCopyPaste: apiclientgo.Pointer(true),\n                                                        },\n                                                    },\n                                                },\n                                                components.RelatedDocuments{\n                                                    QuerySuggestion: &components.QuerySuggestion{\n                                                        Query: \"app:github type:pull author:mortimer\",\n                                                        SearchProviderInfo: &components.SearchProviderInfo{\n                                                            Name: apiclientgo.Pointer(\"Google\"),\n                                                            SearchLinkURLTemplate: apiclientgo.Pointer(\"https://www.google.com/search?q={query}&hl=en\"),\n                                                        },\n                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                        RequestOptions: &components.SearchRequestOptions{\n                                                            DatasourceFilter: apiclientgo.Pointer(\"JIRA\"),\n                                                            DatasourcesFilter: []string{\n                                                                \"JIRA\",\n                                                            },\n                                                            QueryOverridesFacetFilters: apiclientgo.Pointer(true),\n                                                            FacetFilters: []components.FacetFilter{\n                                                                components.FacetFilter{\n                                                                    FieldName: apiclientgo.Pointer(\"type\"),\n                                                                    Values: []components.FacetFilterValue{\n                                                                        components.FacetFilterValue{\n                                                                            Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                            RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                        },\n                                                                        components.FacetFilterValue{\n                                                                            Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                            RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                            FacetFilterSets: []components.FacetFilterSet{\n                                                                components.FacetFilterSet{\n                                                                    Filters: []components.FacetFilter{\n                                                                        components.FacetFilter{\n                                                                            FieldName: apiclientgo.Pointer(\"type\"),\n                                                                            Values: []components.FacetFilterValue{\n                                                                                components.FacetFilterValue{\n                                                                                    Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                                    RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                                },\n                                                                                components.FacetFilterValue{\n                                                                                    Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                                    RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                                },\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                },\n                                                                components.FacetFilterSet{\n                                                                    Filters: []components.FacetFilter{\n                                                                        components.FacetFilter{\n                                                                            FieldName: apiclientgo.Pointer(\"type\"),\n                                                                            Values: []components.FacetFilterValue{\n                                                                                components.FacetFilterValue{\n                                                                                    Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                                    RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                                },\n                                                                                components.FacetFilterValue{\n                                                                                    Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                                    RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                                },\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                            FacetBucketSize: 843281,\n                                                            AuthTokens: []components.AuthToken{\n                                                                components.AuthToken{\n                                                                    AccessToken: \"123abc\",\n                                                                    Datasource: \"gmail\",\n                                                                    Scope: apiclientgo.Pointer(\"email profile https://www.googleapis.com/auth/gmail.readonly\"),\n                                                                    TokenType: apiclientgo.Pointer(\"Bearer\"),\n                                                                    AuthUser: apiclientgo.Pointer(\"1\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        Ranges: []components.TextRange{\n                                                            components.TextRange{\n                                                                StartIndex: 925801,\n                                                            },\n                                                            components.TextRange{\n                                                                StartIndex: 925801,\n                                                            },\n                                                            components.TextRange{\n                                                                StartIndex: 925801,\n                                                            },\n                                                        },\n                                                        InputDetails: &components.SearchRequestInputDetails{\n                                                            HasCopyPaste: apiclientgo.Pointer(true),\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            Metadata: &components.PersonMetadata{\n                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                DatasourceProfile: []components.DatasourceProfile{\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                },\n                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                    Suggestions: []components.QuerySuggestion{\n                                                        components.QuerySuggestion{\n                                                            Query: \"app:github type:pull author:mortimer\",\n                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                        },\n                                                    },\n                                                },\n                                                InviteInfo: &components.InviteInfo{\n                                                    Invites: []components.ChannelInviteInfo{\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                    },\n                                                },\n                                                CustomFields: []components.CustomFieldData{\n                                                    components.CustomFieldData{\n                                                        Label: \"<value>\",\n                                                        Values: []components.CustomFieldValue{\n                                                            components.CreateCustomFieldValueCustomFieldValueStr(\n                                                                components.CustomFieldValueStr{},\n                                                            ),\n                                                            components.CreateCustomFieldValueCustomFieldValueStr(\n                                                                components.CustomFieldValueStr{},\n                                                            ),\n                                                        },\n                                                    },\n                                                    components.CustomFieldData{\n                                                        Label: \"<value>\",\n                                                        Values: []components.CustomFieldValue{\n                                                            components.CreateCustomFieldValueCustomFieldValueStr(\n                                                                components.CustomFieldValueStr{},\n                                                            ),\n                                                            components.CreateCustomFieldValueCustomFieldValueStr(\n                                                                components.CustomFieldValueStr{},\n                                                            ),\n                                                        },\n                                                    },\n                                                    components.CustomFieldData{\n                                                        Label: \"<value>\",\n                                                        Values: []components.CustomFieldValue{\n                                                            components.CreateCustomFieldValueCustomFieldValueStr(\n                                                                components.CustomFieldValueStr{},\n                                                            ),\n                                                            components.CreateCustomFieldValueCustomFieldValueStr(\n                                                                components.CustomFieldValueStr{},\n                                                            ),\n                                                        },\n                                                    },\n                                                },\n                                                Badges: []components.Badge{\n                                                    components.Badge{\n                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                        IconConfig: &components.IconConfig{\n                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        Owner: &components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                            Metadata: &components.PersonMetadata{\n                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                DatasourceProfile: []components.DatasourceProfile{\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                },\n                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                    Suggestions: []components.QuerySuggestion{\n                                                        components.QuerySuggestion{\n                                                            Query: \"app:github type:pull author:mortimer\",\n                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                        },\n                                                    },\n                                                },\n                                                InviteInfo: &components.InviteInfo{\n                                                    Invites: []components.ChannelInviteInfo{\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                    },\n                                                },\n                                                Badges: []components.Badge{\n                                                    components.Badge{\n                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                        IconConfig: &components.IconConfig{\n                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        MentionedPeople: []components.Person{\n                                            components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                            },\n                                        },\n                                        Components: []string{\n                                            \"Backend\",\n                                            \"Networking\",\n                                        },\n                                        Status: apiclientgo.Pointer(\"[\\\"Done\\\"]\"),\n                                        Pins: []components.PinDocument{\n                                            components.PinDocument{\n                                                AudienceFilters: []components.FacetFilter{\n                                                    components.FacetFilter{\n                                                        FieldName: apiclientgo.Pointer(\"type\"),\n                                                        Values: []components.FacetFilterValue{\n                                                            components.FacetFilterValue{\n                                                                Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                RelationType: components.RelationTypeEquals.ToPointer(),\n                                                            },\n                                                            components.FacetFilterValue{\n                                                                Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                RelationType: components.RelationTypeEquals.ToPointer(),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                DocumentID: \"<id>\",\n                                                Attribution: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                UpdatedBy: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            components.PinDocument{\n                                                AudienceFilters: []components.FacetFilter{\n                                                    components.FacetFilter{\n                                                        FieldName: apiclientgo.Pointer(\"type\"),\n                                                        Values: []components.FacetFilterValue{\n                                                            components.FacetFilterValue{\n                                                                Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                RelationType: components.RelationTypeEquals.ToPointer(),\n                                                            },\n                                                            components.FacetFilterValue{\n                                                                Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                RelationType: components.RelationTypeEquals.ToPointer(),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                DocumentID: \"<id>\",\n                                                Attribution: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                UpdatedBy: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        AssignedTo: &components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                            Metadata: &components.PersonMetadata{\n                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                DatasourceProfile: []components.DatasourceProfile{\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                },\n                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                    Suggestions: []components.QuerySuggestion{\n                                                        components.QuerySuggestion{\n                                                            Query: \"app:github type:pull author:mortimer\",\n                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                        },\n                                                    },\n                                                },\n                                                InviteInfo: &components.InviteInfo{\n                                                    Invites: []components.ChannelInviteInfo{\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                    },\n                                                },\n                                                Badges: []components.Badge{\n                                                    components.Badge{\n                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                        IconConfig: &components.IconConfig{\n                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        UpdatedBy: &components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                            Metadata: &components.PersonMetadata{\n                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                DatasourceProfile: []components.DatasourceProfile{\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                },\n                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                    Suggestions: []components.QuerySuggestion{\n                                                        components.QuerySuggestion{\n                                                            Query: \"app:github type:pull author:mortimer\",\n                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                        },\n                                                    },\n                                                },\n                                                InviteInfo: &components.InviteInfo{\n                                                    Invites: []components.ChannelInviteInfo{\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                    },\n                                                },\n                                                Badges: []components.Badge{\n                                                    components.Badge{\n                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                        IconConfig: &components.IconConfig{\n                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        Collections: []components.Collection{\n                                            components.Collection{\n                                                Name: \"<value>\",\n                                                Description: \"perfectly flustered dimly\",\n                                                AddedRoles: []components.UserRoleSpecification{\n                                                    components.UserRoleSpecification{\n                                                        Person: &components.Person{\n                                                            Name: \"George Clooney\",\n                                                            ObfuscatedID: \"abc123\",\n                                                            Metadata: &components.PersonMetadata{\n                                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                DatasourceProfile: []components.DatasourceProfile{\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                },\n                                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                                    Suggestions: []components.QuerySuggestion{\n                                                                        components.QuerySuggestion{\n                                                                            Query: \"app:github type:pull author:mortimer\",\n                                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                                InviteInfo: &components.InviteInfo{\n                                                                    Invites: []components.ChannelInviteInfo{\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                    },\n                                                                },\n                                                                Badges: []components.Badge{\n                                                                    components.Badge{\n                                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                        IconConfig: &components.IconConfig{\n                                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                        Role: components.UserRoleAnswerModerator,\n                                                    },\n                                                    components.UserRoleSpecification{\n                                                        Person: &components.Person{\n                                                            Name: \"George Clooney\",\n                                                            ObfuscatedID: \"abc123\",\n                                                            Metadata: &components.PersonMetadata{\n                                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                DatasourceProfile: []components.DatasourceProfile{\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                },\n                                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                                    Suggestions: []components.QuerySuggestion{\n                                                                        components.QuerySuggestion{\n                                                                            Query: \"app:github type:pull author:mortimer\",\n                                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                                InviteInfo: &components.InviteInfo{\n                                                                    Invites: []components.ChannelInviteInfo{\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                    },\n                                                                },\n                                                                Badges: []components.Badge{\n                                                                    components.Badge{\n                                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                        IconConfig: &components.IconConfig{\n                                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                        Role: components.UserRoleAnswerModerator,\n                                                    },\n                                                    components.UserRoleSpecification{\n                                                        Person: &components.Person{\n                                                            Name: \"George Clooney\",\n                                                            ObfuscatedID: \"abc123\",\n                                                            Metadata: &components.PersonMetadata{\n                                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                DatasourceProfile: []components.DatasourceProfile{\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                },\n                                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                                    Suggestions: []components.QuerySuggestion{\n                                                                        components.QuerySuggestion{\n                                                                            Query: \"app:github type:pull author:mortimer\",\n                                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                                InviteInfo: &components.InviteInfo{\n                                                                    Invites: []components.ChannelInviteInfo{\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                    },\n                                                                },\n                                                                Badges: []components.Badge{\n                                                                    components.Badge{\n                                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                        IconConfig: &components.IconConfig{\n                                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                        Role: components.UserRoleAnswerModerator,\n                                                    },\n                                                },\n                                                RemovedRoles: []components.UserRoleSpecification{\n                                                    components.UserRoleSpecification{\n                                                        Person: &components.Person{\n                                                            Name: \"George Clooney\",\n                                                            ObfuscatedID: \"abc123\",\n                                                            Metadata: &components.PersonMetadata{\n                                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                DatasourceProfile: []components.DatasourceProfile{\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                },\n                                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                                    Suggestions: []components.QuerySuggestion{\n                                                                        components.QuerySuggestion{\n                                                                            Query: \"app:github type:pull author:mortimer\",\n                                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                                InviteInfo: &components.InviteInfo{\n                                                                    Invites: []components.ChannelInviteInfo{\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                    },\n                                                                },\n                                                                Badges: []components.Badge{\n                                                                    components.Badge{\n                                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                        IconConfig: &components.IconConfig{\n                                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                        Role: components.UserRoleVerifier,\n                                                    },\n                                                },\n                                                AudienceFilters: []components.FacetFilter{\n                                                    components.FacetFilter{\n                                                        FieldName: apiclientgo.Pointer(\"type\"),\n                                                        Values: []components.FacetFilterValue{\n                                                            components.FacetFilterValue{\n                                                                Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                RelationType: components.RelationTypeEquals.ToPointer(),\n                                                            },\n                                                            components.FacetFilterValue{\n                                                                Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                RelationType: components.RelationTypeEquals.ToPointer(),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                ID: 83242,\n                                                Creator: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                UpdatedBy: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                Items: []components.CollectionItem{\n                                                    components.CollectionItem{\n                                                        CollectionID: 420359,\n                                                        CreatedBy: &components.Person{\n                                                            Name: \"George Clooney\",\n                                                            ObfuscatedID: \"abc123\",\n                                                            Metadata: &components.PersonMetadata{\n                                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                DatasourceProfile: []components.DatasourceProfile{\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                },\n                                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                                    Suggestions: []components.QuerySuggestion{\n                                                                        components.QuerySuggestion{\n                                                                            Query: \"app:github type:pull author:mortimer\",\n                                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                                InviteInfo: &components.InviteInfo{\n                                                                    Invites: []components.ChannelInviteInfo{\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                    },\n                                                                },\n                                                                Badges: []components.Badge{\n                                                                    components.Badge{\n                                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                        IconConfig: &components.IconConfig{\n                                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                        Shortcut: &components.Shortcut{\n                                                            InputAlias: \"<value>\",\n                                                            CreatedBy: &components.Person{\n                                                                Name: \"George Clooney\",\n                                                                ObfuscatedID: \"abc123\",\n                                                                Metadata: &components.PersonMetadata{\n                                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                                        components.DatasourceProfile{\n                                                                            Datasource: \"github\",\n                                                                            Handle: \"<value>\",\n                                                                        },\n                                                                        components.DatasourceProfile{\n                                                                            Datasource: \"github\",\n                                                                            Handle: \"<value>\",\n                                                                        },\n                                                                        components.DatasourceProfile{\n                                                                            Datasource: \"github\",\n                                                                            Handle: \"<value>\",\n                                                                        },\n                                                                    },\n                                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                                        Suggestions: []components.QuerySuggestion{\n                                                                            components.QuerySuggestion{\n                                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                    InviteInfo: &components.InviteInfo{\n                                                                        Invites: []components.ChannelInviteInfo{\n                                                                            components.ChannelInviteInfo{},\n                                                                            components.ChannelInviteInfo{},\n                                                                            components.ChannelInviteInfo{},\n                                                                        },\n                                                                    },\n                                                                    Badges: []components.Badge{\n                                                                        components.Badge{\n                                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                            IconConfig: &components.IconConfig{\n                                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                            UpdatedBy: &components.Person{\n                                                                Name: \"George Clooney\",\n                                                                ObfuscatedID: \"abc123\",\n                                                                Metadata: &components.PersonMetadata{\n                                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                                        components.DatasourceProfile{\n                                                                            Datasource: \"github\",\n                                                                            Handle: \"<value>\",\n                                                                        },\n                                                                        components.DatasourceProfile{\n                                                                            Datasource: \"github\",\n                                                                            Handle: \"<value>\",\n                                                                        },\n                                                                    },\n                                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                                        Suggestions: []components.QuerySuggestion{\n                                                                            components.QuerySuggestion{\n                                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                    InviteInfo: &components.InviteInfo{\n                                                                        Invites: []components.ChannelInviteInfo{\n                                                                            components.ChannelInviteInfo{},\n                                                                            components.ChannelInviteInfo{},\n                                                                            components.ChannelInviteInfo{},\n                                                                        },\n                                                                    },\n                                                                    Badges: []components.Badge{\n                                                                        components.Badge{\n                                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                            IconConfig: &components.IconConfig{\n                                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                            Roles: []components.UserRoleSpecification{\n                                                                components.UserRoleSpecification{\n                                                                    Person: &components.Person{\n                                                                        Name: \"George Clooney\",\n                                                                        ObfuscatedID: \"abc123\",\n                                                                        Metadata: &components.PersonMetadata{\n                                                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                            DatasourceProfile: []components.DatasourceProfile{\n                                                                                components.DatasourceProfile{\n                                                                                    Datasource: \"github\",\n                                                                                    Handle: \"<value>\",\n                                                                                },\n                                                                                components.DatasourceProfile{\n                                                                                    Datasource: \"github\",\n                                                                                    Handle: \"<value>\",\n                                                                                },\n                                                                            },\n                                                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                                                Suggestions: []components.QuerySuggestion{\n                                                                                    components.QuerySuggestion{\n                                                                                        Query: \"app:github type:pull author:mortimer\",\n                                                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                                                    },\n                                                                                },\n                                                                            },\n                                                                            InviteInfo: &components.InviteInfo{\n                                                                                Invites: []components.ChannelInviteInfo{\n                                                                                    components.ChannelInviteInfo{},\n                                                                                    components.ChannelInviteInfo{},\n                                                                                    components.ChannelInviteInfo{},\n                                                                                },\n                                                                            },\n                                                                            Badges: []components.Badge{\n                                                                                components.Badge{\n                                                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                                    IconConfig: &components.IconConfig{\n                                                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                                                    },\n                                                                                },\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                    Role: components.UserRoleAnswerModerator,\n                                                                },\n                                                                components.UserRoleSpecification{\n                                                                    Person: &components.Person{\n                                                                        Name: \"George Clooney\",\n                                                                        ObfuscatedID: \"abc123\",\n                                                                        Metadata: &components.PersonMetadata{\n                                                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                            DatasourceProfile: []components.DatasourceProfile{\n                                                                                components.DatasourceProfile{\n                                                                                    Datasource: \"github\",\n                                                                                    Handle: \"<value>\",\n                                                                                },\n                                                                                components.DatasourceProfile{\n                                                                                    Datasource: \"github\",\n                                                                                    Handle: \"<value>\",\n                                                                                },\n                                                                            },\n                                                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                                                Suggestions: []components.QuerySuggestion{\n                                                                                    components.QuerySuggestion{\n                                                                                        Query: \"app:github type:pull author:mortimer\",\n                                                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                                                    },\n                                                                                },\n                                                                            },\n                                                                            InviteInfo: &components.InviteInfo{\n                                                                                Invites: []components.ChannelInviteInfo{\n                                                                                    components.ChannelInviteInfo{},\n                                                                                    components.ChannelInviteInfo{},\n                                                                                    components.ChannelInviteInfo{},\n                                                                                },\n                                                                            },\n                                                                            Badges: []components.Badge{\n                                                                                components.Badge{\n                                                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                                    IconConfig: &components.IconConfig{\n                                                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                                                    },\n                                                                                },\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                    Role: components.UserRoleAnswerModerator,\n                                                                },\n                                                            },\n                                                        },\n                                                        ItemType: components.CollectionItemItemTypeCollection,\n                                                    },\n                                                    components.CollectionItem{\n                                                        CollectionID: 420359,\n                                                        CreatedBy: &components.Person{\n                                                            Name: \"George Clooney\",\n                                                            ObfuscatedID: \"abc123\",\n                                                            Metadata: &components.PersonMetadata{\n                                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                DatasourceProfile: []components.DatasourceProfile{\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                },\n                                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                                    Suggestions: []components.QuerySuggestion{\n                                                                        components.QuerySuggestion{\n                                                                            Query: \"app:github type:pull author:mortimer\",\n                                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                                InviteInfo: &components.InviteInfo{\n                                                                    Invites: []components.ChannelInviteInfo{\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                    },\n                                                                },\n                                                                Badges: []components.Badge{\n                                                                    components.Badge{\n                                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                        IconConfig: &components.IconConfig{\n                                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                        Shortcut: &components.Shortcut{\n                                                            InputAlias: \"<value>\",\n                                                            CreatedBy: &components.Person{\n                                                                Name: \"George Clooney\",\n                                                                ObfuscatedID: \"abc123\",\n                                                                Metadata: &components.PersonMetadata{\n                                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                                        components.DatasourceProfile{\n                                                                            Datasource: \"github\",\n                                                                            Handle: \"<value>\",\n                                                                        },\n                                                                        components.DatasourceProfile{\n                                                                            Datasource: \"github\",\n                                                                            Handle: \"<value>\",\n                                                                        },\n                                                                        components.DatasourceProfile{\n                                                                            Datasource: \"github\",\n                                                                            Handle: \"<value>\",\n                                                                        },\n                                                                    },\n                                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                                        Suggestions: []components.QuerySuggestion{\n                                                                            components.QuerySuggestion{\n                                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                    InviteInfo: &components.InviteInfo{\n                                                                        Invites: []components.ChannelInviteInfo{\n                                                                            components.ChannelInviteInfo{},\n                                                                            components.ChannelInviteInfo{},\n                                                                            components.ChannelInviteInfo{},\n                                                                        },\n                                                                    },\n                                                                    Badges: []components.Badge{\n                                                                        components.Badge{\n                                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                            IconConfig: &components.IconConfig{\n                                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                            UpdatedBy: &components.Person{\n                                                                Name: \"George Clooney\",\n                                                                ObfuscatedID: \"abc123\",\n                                                                Metadata: &components.PersonMetadata{\n                                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                                        components.DatasourceProfile{\n                                                                            Datasource: \"github\",\n                                                                            Handle: \"<value>\",\n                                                                        },\n                                                                        components.DatasourceProfile{\n                                                                            Datasource: \"github\",\n                                                                            Handle: \"<value>\",\n                                                                        },\n                                                                    },\n                                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                                        Suggestions: []components.QuerySuggestion{\n                                                                            components.QuerySuggestion{\n                                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                    InviteInfo: &components.InviteInfo{\n                                                                        Invites: []components.ChannelInviteInfo{\n                                                                            components.ChannelInviteInfo{},\n                                                                            components.ChannelInviteInfo{},\n                                                                            components.ChannelInviteInfo{},\n                                                                        },\n                                                                    },\n                                                                    Badges: []components.Badge{\n                                                                        components.Badge{\n                                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                            IconConfig: &components.IconConfig{\n                                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                            Roles: []components.UserRoleSpecification{\n                                                                components.UserRoleSpecification{\n                                                                    Person: &components.Person{\n                                                                        Name: \"George Clooney\",\n                                                                        ObfuscatedID: \"abc123\",\n                                                                        Metadata: &components.PersonMetadata{\n                                                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                            DatasourceProfile: []components.DatasourceProfile{\n                                                                                components.DatasourceProfile{\n                                                                                    Datasource: \"github\",\n                                                                                    Handle: \"<value>\",\n                                                                                },\n                                                                                components.DatasourceProfile{\n                                                                                    Datasource: \"github\",\n                                                                                    Handle: \"<value>\",\n                                                                                },\n                                                                            },\n                                                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                                                Suggestions: []components.QuerySuggestion{\n                                                                                    components.QuerySuggestion{\n                                                                                        Query: \"app:github type:pull author:mortimer\",\n                                                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                                                    },\n                                                                                },\n                                                                            },\n                                                                            InviteInfo: &components.InviteInfo{\n                                                                                Invites: []components.ChannelInviteInfo{\n                                                                                    components.ChannelInviteInfo{},\n                                                                                    components.ChannelInviteInfo{},\n                                                                                    components.ChannelInviteInfo{},\n                                                                                },\n                                                                            },\n                                                                            Badges: []components.Badge{\n                                                                                components.Badge{\n                                                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                                    IconConfig: &components.IconConfig{\n                                                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                                                    },\n                                                                                },\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                    Role: components.UserRoleAnswerModerator,\n                                                                },\n                                                                components.UserRoleSpecification{\n                                                                    Person: &components.Person{\n                                                                        Name: \"George Clooney\",\n                                                                        ObfuscatedID: \"abc123\",\n                                                                        Metadata: &components.PersonMetadata{\n                                                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                            DatasourceProfile: []components.DatasourceProfile{\n                                                                                components.DatasourceProfile{\n                                                                                    Datasource: \"github\",\n                                                                                    Handle: \"<value>\",\n                                                                                },\n                                                                                components.DatasourceProfile{\n                                                                                    Datasource: \"github\",\n                                                                                    Handle: \"<value>\",\n                                                                                },\n                                                                            },\n                                                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                                                Suggestions: []components.QuerySuggestion{\n                                                                                    components.QuerySuggestion{\n                                                                                        Query: \"app:github type:pull author:mortimer\",\n                                                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                                                    },\n                                                                                },\n                                                                            },\n                                                                            InviteInfo: &components.InviteInfo{\n                                                                                Invites: []components.ChannelInviteInfo{\n                                                                                    components.ChannelInviteInfo{},\n                                                                                    components.ChannelInviteInfo{},\n                                                                                    components.ChannelInviteInfo{},\n                                                                                },\n                                                                            },\n                                                                            Badges: []components.Badge{\n                                                                                components.Badge{\n                                                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                                    IconConfig: &components.IconConfig{\n                                                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                                                    },\n                                                                                },\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                    Role: components.UserRoleAnswerModerator,\n                                                                },\n                                                            },\n                                                        },\n                                                        ItemType: components.CollectionItemItemTypeCollection,\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        Interactions: &components.DocumentInteractions{\n                                            Reacts: []components.Reaction{\n                                                components.Reaction{\n                                                    Reactors: []components.Person{\n                                                        components.Person{\n                                                            Name: \"George Clooney\",\n                                                            ObfuscatedID: \"abc123\",\n                                                        },\n                                                    },\n                                                },\n                                                components.Reaction{\n                                                    Reactors: []components.Person{\n                                                        components.Person{\n                                                            Name: \"George Clooney\",\n                                                            ObfuscatedID: \"abc123\",\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            Shares: []components.Share{\n                                                components.Share{\n                                                    NumDaysAgo: 582012,\n                                                    Sharer: &components.Person{\n                                                        Name: \"George Clooney\",\n                                                        ObfuscatedID: \"abc123\",\n                                                        Metadata: &components.PersonMetadata{\n                                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                            DatasourceProfile: []components.DatasourceProfile{\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                            },\n                                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                                Suggestions: []components.QuerySuggestion{\n                                                                    components.QuerySuggestion{\n                                                                        Query: \"app:github type:pull author:mortimer\",\n                                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                            InviteInfo: &components.InviteInfo{\n                                                                Invites: []components.ChannelInviteInfo{\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                },\n                                                            },\n                                                            Badges: []components.Badge{\n                                                                components.Badge{\n                                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                    IconConfig: &components.IconConfig{\n                                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        Verification: &components.Verification{\n                                            State: components.StateDeprecated,\n                                            Metadata: &components.VerificationMetadata{\n                                                LastVerifier: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                Reminders: []components.Reminder{\n                                                    components.Reminder{\n                                                        Assignee: components.Person{\n                                                            Name: \"George Clooney\",\n                                                            ObfuscatedID: \"abc123\",\n                                                            Metadata: &components.PersonMetadata{\n                                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                DatasourceProfile: []components.DatasourceProfile{\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                },\n                                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                                    Suggestions: []components.QuerySuggestion{\n                                                                        components.QuerySuggestion{\n                                                                            Query: \"app:github type:pull author:mortimer\",\n                                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                                InviteInfo: &components.InviteInfo{\n                                                                    Invites: []components.ChannelInviteInfo{\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                    },\n                                                                },\n                                                                Badges: []components.Badge{\n                                                                    components.Badge{\n                                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                        IconConfig: &components.IconConfig{\n                                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                        Requestor: &components.Person{\n                                                            Name: \"George Clooney\",\n                                                            ObfuscatedID: \"abc123\",\n                                                            Metadata: &components.PersonMetadata{\n                                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                DatasourceProfile: []components.DatasourceProfile{\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                },\n                                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                                    Suggestions: []components.QuerySuggestion{\n                                                                        components.QuerySuggestion{\n                                                                            Query: \"app:github type:pull author:mortimer\",\n                                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                                InviteInfo: &components.InviteInfo{\n                                                                    Invites: []components.ChannelInviteInfo{\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                    },\n                                                                },\n                                                                Badges: []components.Badge{\n                                                                    components.Badge{\n                                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                        IconConfig: &components.IconConfig{\n                                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                        RemindAt: 785622,\n                                                    },\n                                                    components.Reminder{\n                                                        Assignee: components.Person{\n                                                            Name: \"George Clooney\",\n                                                            ObfuscatedID: \"abc123\",\n                                                            Metadata: &components.PersonMetadata{\n                                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                DatasourceProfile: []components.DatasourceProfile{\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                },\n                                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                                    Suggestions: []components.QuerySuggestion{\n                                                                        components.QuerySuggestion{\n                                                                            Query: \"app:github type:pull author:mortimer\",\n                                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                                InviteInfo: &components.InviteInfo{\n                                                                    Invites: []components.ChannelInviteInfo{\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                    },\n                                                                },\n                                                                Badges: []components.Badge{\n                                                                    components.Badge{\n                                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                        IconConfig: &components.IconConfig{\n                                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                        Requestor: &components.Person{\n                                                            Name: \"George Clooney\",\n                                                            ObfuscatedID: \"abc123\",\n                                                            Metadata: &components.PersonMetadata{\n                                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                DatasourceProfile: []components.DatasourceProfile{\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                },\n                                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                                    Suggestions: []components.QuerySuggestion{\n                                                                        components.QuerySuggestion{\n                                                                            Query: \"app:github type:pull author:mortimer\",\n                                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                                InviteInfo: &components.InviteInfo{\n                                                                    Invites: []components.ChannelInviteInfo{\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                    },\n                                                                },\n                                                                Badges: []components.Badge{\n                                                                    components.Badge{\n                                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                        IconConfig: &components.IconConfig{\n                                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                        RemindAt: 785622,\n                                                    },\n                                                    components.Reminder{\n                                                        Assignee: components.Person{\n                                                            Name: \"George Clooney\",\n                                                            ObfuscatedID: \"abc123\",\n                                                            Metadata: &components.PersonMetadata{\n                                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                DatasourceProfile: []components.DatasourceProfile{\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                },\n                                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                                    Suggestions: []components.QuerySuggestion{\n                                                                        components.QuerySuggestion{\n                                                                            Query: \"app:github type:pull author:mortimer\",\n                                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                                InviteInfo: &components.InviteInfo{\n                                                                    Invites: []components.ChannelInviteInfo{\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                    },\n                                                                },\n                                                                Badges: []components.Badge{\n                                                                    components.Badge{\n                                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                        IconConfig: &components.IconConfig{\n                                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                        Requestor: &components.Person{\n                                                            Name: \"George Clooney\",\n                                                            ObfuscatedID: \"abc123\",\n                                                            Metadata: &components.PersonMetadata{\n                                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                DatasourceProfile: []components.DatasourceProfile{\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                },\n                                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                                    Suggestions: []components.QuerySuggestion{\n                                                                        components.QuerySuggestion{\n                                                                            Query: \"app:github type:pull author:mortimer\",\n                                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                                InviteInfo: &components.InviteInfo{\n                                                                    Invites: []components.ChannelInviteInfo{\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                    },\n                                                                },\n                                                                Badges: []components.Badge{\n                                                                    components.Badge{\n                                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                        IconConfig: &components.IconConfig{\n                                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                        RemindAt: 785622,\n                                                    },\n                                                },\n                                                LastReminder: &components.Reminder{\n                                                    Assignee: components.Person{\n                                                        Name: \"George Clooney\",\n                                                        ObfuscatedID: \"abc123\",\n                                                        Metadata: &components.PersonMetadata{\n                                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                            DatasourceProfile: []components.DatasourceProfile{\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                            },\n                                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                                Suggestions: []components.QuerySuggestion{\n                                                                    components.QuerySuggestion{\n                                                                        Query: \"app:github type:pull author:mortimer\",\n                                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                            InviteInfo: &components.InviteInfo{\n                                                                Invites: []components.ChannelInviteInfo{\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                },\n                                                            },\n                                                            Badges: []components.Badge{\n                                                                components.Badge{\n                                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                    IconConfig: &components.IconConfig{\n                                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    Requestor: &components.Person{\n                                                        Name: \"George Clooney\",\n                                                        ObfuscatedID: \"abc123\",\n                                                        Metadata: &components.PersonMetadata{\n                                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                            DatasourceProfile: []components.DatasourceProfile{\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                            },\n                                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                                Suggestions: []components.QuerySuggestion{\n                                                                    components.QuerySuggestion{\n                                                                        Query: \"app:github type:pull author:mortimer\",\n                                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                            InviteInfo: &components.InviteInfo{\n                                                                Invites: []components.ChannelInviteInfo{\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                },\n                                                            },\n                                                            Badges: []components.Badge{\n                                                                components.Badge{\n                                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                    IconConfig: &components.IconConfig{\n                                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    RemindAt: 269943,\n                                                },\n                                                CandidateVerifiers: []components.Person{\n                                                    components.Person{\n                                                        Name: \"George Clooney\",\n                                                        ObfuscatedID: \"abc123\",\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        Shortcuts: []components.Shortcut{\n                                            components.Shortcut{\n                                                InputAlias: \"<value>\",\n                                                CreatedBy: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                UpdatedBy: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        CustomData: map[string]components.CustomDataValue{\n                                            \"someCustomField\": components.CustomDataValue{},\n                                        },\n                                        ContactPerson: &components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                            Metadata: &components.PersonMetadata{\n                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                DatasourceProfile: []components.DatasourceProfile{\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                },\n                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                    Suggestions: []components.QuerySuggestion{\n                                                        components.QuerySuggestion{\n                                                            Query: \"app:github type:pull author:mortimer\",\n                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                        },\n                                                    },\n                                                },\n                                                InviteInfo: &components.InviteInfo{\n                                                    Invites: []components.ChannelInviteInfo{\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                    },\n                                                },\n                                                Badges: []components.Badge{\n                                                    components.Badge{\n                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                        IconConfig: &components.IconConfig{\n                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                },\n                                Title: apiclientgo.Pointer(\"title\"),\n                                URL: \"https://example.com/foo/bar\",\n                                NativeAppURL: apiclientgo.Pointer(\"slack://foo/bar\"),\n                                Snippets: []components.SearchResultSnippet{\n                                    components.SearchResultSnippet{\n                                        MimeType: apiclientgo.Pointer(\"mimeType\"),\n                                        Snippet: \"snippet\",\n                                    },\n                                },\n                                RelatedResults: []components.RelatedDocuments{\n                                    components.RelatedDocuments{\n                                        QuerySuggestion: &components.QuerySuggestion{\n                                            Query: \"app:github type:pull author:mortimer\",\n                                            SearchProviderInfo: &components.SearchProviderInfo{\n                                                Name: apiclientgo.Pointer(\"Google\"),\n                                                SearchLinkURLTemplate: apiclientgo.Pointer(\"https://www.google.com/search?q={query}&hl=en\"),\n                                            },\n                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                            RequestOptions: &components.SearchRequestOptions{\n                                                DatasourceFilter: apiclientgo.Pointer(\"JIRA\"),\n                                                DatasourcesFilter: []string{\n                                                    \"JIRA\",\n                                                },\n                                                QueryOverridesFacetFilters: apiclientgo.Pointer(true),\n                                                FacetFilters: []components.FacetFilter{\n                                                    components.FacetFilter{\n                                                        FieldName: apiclientgo.Pointer(\"type\"),\n                                                        Values: []components.FacetFilterValue{\n                                                            components.FacetFilterValue{\n                                                                Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                RelationType: components.RelationTypeEquals.ToPointer(),\n                                                            },\n                                                            components.FacetFilterValue{\n                                                                Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                RelationType: components.RelationTypeEquals.ToPointer(),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                FacetFilterSets: []components.FacetFilterSet{\n                                                    components.FacetFilterSet{\n                                                        Filters: []components.FacetFilter{\n                                                            components.FacetFilter{\n                                                                FieldName: apiclientgo.Pointer(\"type\"),\n                                                                Values: []components.FacetFilterValue{\n                                                                    components.FacetFilterValue{\n                                                                        Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                    },\n                                                                    components.FacetFilterValue{\n                                                                        Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    components.FacetFilterSet{\n                                                        Filters: []components.FacetFilter{\n                                                            components.FacetFilter{\n                                                                FieldName: apiclientgo.Pointer(\"type\"),\n                                                                Values: []components.FacetFilterValue{\n                                                                    components.FacetFilterValue{\n                                                                        Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                    },\n                                                                    components.FacetFilterValue{\n                                                                        Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    components.FacetFilterSet{\n                                                        Filters: []components.FacetFilter{\n                                                            components.FacetFilter{\n                                                                FieldName: apiclientgo.Pointer(\"type\"),\n                                                                Values: []components.FacetFilterValue{\n                                                                    components.FacetFilterValue{\n                                                                        Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                    },\n                                                                    components.FacetFilterValue{\n                                                                        Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                FacetBucketSize: 127205,\n                                                AuthTokens: []components.AuthToken{\n                                                    components.AuthToken{\n                                                        AccessToken: \"123abc\",\n                                                        Datasource: \"gmail\",\n                                                        Scope: apiclientgo.Pointer(\"email profile https://www.googleapis.com/auth/gmail.readonly\"),\n                                                        TokenType: apiclientgo.Pointer(\"Bearer\"),\n                                                        AuthUser: apiclientgo.Pointer(\"1\"),\n                                                    },\n                                                },\n                                            },\n                                            InputDetails: &components.SearchRequestInputDetails{\n                                                HasCopyPaste: apiclientgo.Pointer(true),\n                                            },\n                                        },\n                                    },\n                                    components.RelatedDocuments{\n                                        QuerySuggestion: &components.QuerySuggestion{\n                                            Query: \"app:github type:pull author:mortimer\",\n                                            SearchProviderInfo: &components.SearchProviderInfo{\n                                                Name: apiclientgo.Pointer(\"Google\"),\n                                                SearchLinkURLTemplate: apiclientgo.Pointer(\"https://www.google.com/search?q={query}&hl=en\"),\n                                            },\n                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                            RequestOptions: &components.SearchRequestOptions{\n                                                DatasourceFilter: apiclientgo.Pointer(\"JIRA\"),\n                                                DatasourcesFilter: []string{\n                                                    \"JIRA\",\n                                                },\n                                                QueryOverridesFacetFilters: apiclientgo.Pointer(true),\n                                                FacetFilters: []components.FacetFilter{\n                                                    components.FacetFilter{\n                                                        FieldName: apiclientgo.Pointer(\"type\"),\n                                                        Values: []components.FacetFilterValue{\n                                                            components.FacetFilterValue{\n                                                                Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                RelationType: components.RelationTypeEquals.ToPointer(),\n                                                            },\n                                                            components.FacetFilterValue{\n                                                                Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                RelationType: components.RelationTypeEquals.ToPointer(),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                FacetFilterSets: []components.FacetFilterSet{\n                                                    components.FacetFilterSet{\n                                                        Filters: []components.FacetFilter{\n                                                            components.FacetFilter{\n                                                                FieldName: apiclientgo.Pointer(\"type\"),\n                                                                Values: []components.FacetFilterValue{\n                                                                    components.FacetFilterValue{\n                                                                        Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                    },\n                                                                    components.FacetFilterValue{\n                                                                        Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    components.FacetFilterSet{\n                                                        Filters: []components.FacetFilter{\n                                                            components.FacetFilter{\n                                                                FieldName: apiclientgo.Pointer(\"type\"),\n                                                                Values: []components.FacetFilterValue{\n                                                                    components.FacetFilterValue{\n                                                                        Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                    },\n                                                                    components.FacetFilterValue{\n                                                                        Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    components.FacetFilterSet{\n                                                        Filters: []components.FacetFilter{\n                                                            components.FacetFilter{\n                                                                FieldName: apiclientgo.Pointer(\"type\"),\n                                                                Values: []components.FacetFilterValue{\n                                                                    components.FacetFilterValue{\n                                                                        Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                    },\n                                                                    components.FacetFilterValue{\n                                                                        Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                FacetBucketSize: 127205,\n                                                AuthTokens: []components.AuthToken{\n                                                    components.AuthToken{\n                                                        AccessToken: \"123abc\",\n                                                        Datasource: \"gmail\",\n                                                        Scope: apiclientgo.Pointer(\"email profile https://www.googleapis.com/auth/gmail.readonly\"),\n                                                        TokenType: apiclientgo.Pointer(\"Bearer\"),\n                                                        AuthUser: apiclientgo.Pointer(\"1\"),\n                                                    },\n                                                },\n                                            },\n                                            InputDetails: &components.SearchRequestInputDetails{\n                                                HasCopyPaste: apiclientgo.Pointer(true),\n                                            },\n                                        },\n                                    },\n                                },\n                                AllClusteredResults: []components.ClusterGroup{\n                                    components.ClusterGroup{\n                                        VisibleCountHint: 156570,\n                                    },\n                                    components.ClusterGroup{\n                                        VisibleCountHint: 156570,\n                                    },\n                                },\n                                MustIncludeSuggestions: &components.QuerySuggestionList{\n                                    Person: &components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                },\n                                QuerySuggestion: &components.QuerySuggestion{\n                                    Query: \"app:github type:pull author:mortimer\",\n                                    SearchProviderInfo: &components.SearchProviderInfo{\n                                        Name: apiclientgo.Pointer(\"Google\"),\n                                        SearchLinkURLTemplate: apiclientgo.Pointer(\"https://www.google.com/search?q={query}&hl=en\"),\n                                    },\n                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                    RequestOptions: &components.SearchRequestOptions{\n                                        DatasourceFilter: apiclientgo.Pointer(\"JIRA\"),\n                                        DatasourcesFilter: []string{\n                                            \"JIRA\",\n                                        },\n                                        QueryOverridesFacetFilters: apiclientgo.Pointer(true),\n                                        FacetFilters: []components.FacetFilter{\n                                            components.FacetFilter{\n                                                FieldName: apiclientgo.Pointer(\"type\"),\n                                                Values: []components.FacetFilterValue{\n                                                    components.FacetFilterValue{\n                                                        Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                    },\n                                                    components.FacetFilterValue{\n                                                        Value: apiclientgo.Pointer(\"Presentation\"),\n                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        FacetFilterSets: []components.FacetFilterSet{\n                                            components.FacetFilterSet{\n                                                Filters: []components.FacetFilter{\n                                                    components.FacetFilter{\n                                                        FieldName: apiclientgo.Pointer(\"type\"),\n                                                        Values: []components.FacetFilterValue{\n                                                            components.FacetFilterValue{\n                                                                Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                RelationType: components.RelationTypeEquals.ToPointer(),\n                                                            },\n                                                            components.FacetFilterValue{\n                                                                Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                RelationType: components.RelationTypeEquals.ToPointer(),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            components.FacetFilterSet{\n                                                Filters: []components.FacetFilter{\n                                                    components.FacetFilter{\n                                                        FieldName: apiclientgo.Pointer(\"type\"),\n                                                        Values: []components.FacetFilterValue{\n                                                            components.FacetFilterValue{\n                                                                Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                RelationType: components.RelationTypeEquals.ToPointer(),\n                                                            },\n                                                            components.FacetFilterValue{\n                                                                Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                RelationType: components.RelationTypeEquals.ToPointer(),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            components.FacetFilterSet{\n                                                Filters: []components.FacetFilter{\n                                                    components.FacetFilter{\n                                                        FieldName: apiclientgo.Pointer(\"type\"),\n                                                        Values: []components.FacetFilterValue{\n                                                            components.FacetFilterValue{\n                                                                Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                RelationType: components.RelationTypeEquals.ToPointer(),\n                                                            },\n                                                            components.FacetFilterValue{\n                                                                Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                RelationType: components.RelationTypeEquals.ToPointer(),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        FacetBucketSize: 974103,\n                                        AuthTokens: []components.AuthToken{\n                                            components.AuthToken{\n                                                AccessToken: \"123abc\",\n                                                Datasource: \"gmail\",\n                                                Scope: apiclientgo.Pointer(\"email profile https://www.googleapis.com/auth/gmail.readonly\"),\n                                                TokenType: apiclientgo.Pointer(\"Bearer\"),\n                                                AuthUser: apiclientgo.Pointer(\"1\"),\n                                            },\n                                        },\n                                    },\n                                    InputDetails: &components.SearchRequestInputDetails{\n                                        HasCopyPaste: apiclientgo.Pointer(true),\n                                    },\n                                },\n                            },\n                        },\n                        Meeting: &components.Meeting{\n                            Attendees: &components.CalendarAttendees{\n                                People: []components.CalendarAttendee{\n                                    components.CalendarAttendee{\n                                        Person: components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                            Metadata: &components.PersonMetadata{\n                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                DatasourceProfile: []components.DatasourceProfile{\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                },\n                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                    Suggestions: []components.QuerySuggestion{\n                                                        components.QuerySuggestion{\n                                                            Query: \"app:github type:pull author:mortimer\",\n                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                        },\n                                                    },\n                                                },\n                                                InviteInfo: &components.InviteInfo{\n                                                    Invites: []components.ChannelInviteInfo{\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                    },\n                                                },\n                                                Badges: []components.Badge{\n                                                    components.Badge{\n                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                        IconConfig: &components.IconConfig{\n                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    components.CalendarAttendee{\n                                        Person: components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                            Metadata: &components.PersonMetadata{\n                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                DatasourceProfile: []components.DatasourceProfile{\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                },\n                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                    Suggestions: []components.QuerySuggestion{\n                                                        components.QuerySuggestion{\n                                                            Query: \"app:github type:pull author:mortimer\",\n                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                        },\n                                                    },\n                                                },\n                                                InviteInfo: &components.InviteInfo{\n                                                    Invites: []components.ChannelInviteInfo{\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                    },\n                                                },\n                                                Badges: []components.Badge{\n                                                    components.Badge{\n                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                        IconConfig: &components.IconConfig{\n                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                },\n                            },\n                        },\n                        Collection: &components.Collection{\n                            Name: \"<value>\",\n                            Description: \"rubric sadly clueless whoever torn rim coaxingly\",\n                            AudienceFilters: []components.FacetFilter{\n                                components.FacetFilter{\n                                    FieldName: apiclientgo.Pointer(\"type\"),\n                                    Values: []components.FacetFilterValue{\n                                        components.FacetFilterValue{\n                                            Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                            RelationType: components.RelationTypeEquals.ToPointer(),\n                                        },\n                                        components.FacetFilterValue{\n                                            Value: apiclientgo.Pointer(\"Presentation\"),\n                                            RelationType: components.RelationTypeEquals.ToPointer(),\n                                        },\n                                    },\n                                },\n                            },\n                            ID: 690639,\n                            Creator: &components.Person{\n                                Name: \"George Clooney\",\n                                ObfuscatedID: \"abc123\",\n                                Metadata: &components.PersonMetadata{\n                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                    DatasourceProfile: []components.DatasourceProfile{\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                    },\n                                    QuerySuggestions: &components.QuerySuggestionList{\n                                        Suggestions: []components.QuerySuggestion{\n                                            components.QuerySuggestion{\n                                                Query: \"app:github type:pull author:mortimer\",\n                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                            },\n                                        },\n                                    },\n                                    InviteInfo: &components.InviteInfo{\n                                        Invites: []components.ChannelInviteInfo{\n                                            components.ChannelInviteInfo{},\n                                            components.ChannelInviteInfo{},\n                                            components.ChannelInviteInfo{},\n                                        },\n                                    },\n                                    Badges: []components.Badge{\n                                        components.Badge{\n                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                            IconConfig: &components.IconConfig{\n                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                Name: apiclientgo.Pointer(\"user\"),\n                                            },\n                                        },\n                                    },\n                                },\n                            },\n                            UpdatedBy: &components.Person{\n                                Name: \"George Clooney\",\n                                ObfuscatedID: \"abc123\",\n                                Metadata: &components.PersonMetadata{\n                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                    DatasourceProfile: []components.DatasourceProfile{\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                    },\n                                    QuerySuggestions: &components.QuerySuggestionList{\n                                        Suggestions: []components.QuerySuggestion{\n                                            components.QuerySuggestion{\n                                                Query: \"app:github type:pull author:mortimer\",\n                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                            },\n                                        },\n                                    },\n                                    InviteInfo: &components.InviteInfo{\n                                        Invites: []components.ChannelInviteInfo{\n                                            components.ChannelInviteInfo{},\n                                            components.ChannelInviteInfo{},\n                                            components.ChannelInviteInfo{},\n                                        },\n                                    },\n                                    Badges: []components.Badge{\n                                        components.Badge{\n                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                            IconConfig: &components.IconConfig{\n                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                Name: apiclientgo.Pointer(\"user\"),\n                                            },\n                                        },\n                                    },\n                                },\n                            },\n                        },\n                        Code: &components.Code{\n                            RepoName: apiclientgo.Pointer(\"scio\"),\n                            FileName: apiclientgo.Pointer(\"README.md\"),\n                            Lines: []components.CodeLine{\n                                components.CodeLine{},\n                            },\n                        },\n                        Shortcut: &components.Shortcut{\n                            InputAlias: \"<value>\",\n                            CreatedBy: &components.Person{\n                                Name: \"George Clooney\",\n                                ObfuscatedID: \"abc123\",\n                                Metadata: &components.PersonMetadata{\n                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                    DatasourceProfile: []components.DatasourceProfile{\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                    },\n                                    QuerySuggestions: &components.QuerySuggestionList{\n                                        Suggestions: []components.QuerySuggestion{\n                                            components.QuerySuggestion{\n                                                Query: \"app:github type:pull author:mortimer\",\n                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                            },\n                                        },\n                                    },\n                                    InviteInfo: &components.InviteInfo{\n                                        Invites: []components.ChannelInviteInfo{\n                                            components.ChannelInviteInfo{},\n                                            components.ChannelInviteInfo{},\n                                            components.ChannelInviteInfo{},\n                                        },\n                                    },\n                                    Badges: []components.Badge{\n                                        components.Badge{\n                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                            IconConfig: &components.IconConfig{\n                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                Name: apiclientgo.Pointer(\"user\"),\n                                            },\n                                        },\n                                    },\n                                },\n                            },\n                            UpdatedBy: &components.Person{\n                                Name: \"George Clooney\",\n                                ObfuscatedID: \"abc123\",\n                                Metadata: &components.PersonMetadata{\n                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                    DatasourceProfile: []components.DatasourceProfile{\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                    },\n                                    QuerySuggestions: &components.QuerySuggestionList{\n                                        Suggestions: []components.QuerySuggestion{\n                                            components.QuerySuggestion{\n                                                Query: \"app:github type:pull author:mortimer\",\n                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                            },\n                                        },\n                                    },\n                                    InviteInfo: &components.InviteInfo{\n                                        Invites: []components.ChannelInviteInfo{\n                                            components.ChannelInviteInfo{},\n                                            components.ChannelInviteInfo{},\n                                            components.ChannelInviteInfo{},\n                                        },\n                                    },\n                                    Badges: []components.Badge{\n                                        components.Badge{\n                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                            IconConfig: &components.IconConfig{\n                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                Name: apiclientgo.Pointer(\"user\"),\n                                            },\n                                        },\n                                    },\n                                },\n                            },\n                            DestinationDocument: &components.Document{\n                                Metadata: &components.DocumentMetadata{\n                                    Datasource: apiclientgo.Pointer(\"datasource\"),\n                                    ObjectType: apiclientgo.Pointer(\"Feature Request\"),\n                                    Container: apiclientgo.Pointer(\"container\"),\n                                    ParentID: apiclientgo.Pointer(\"JIRA_EN-1337\"),\n                                    MimeType: apiclientgo.Pointer(\"mimeType\"),\n                                    DocumentID: apiclientgo.Pointer(\"documentId\"),\n                                    CreateTime: types.MustNewTimeFromString(\"2000-01-23T04:56:07.000Z\"),\n                                    UpdateTime: types.MustNewTimeFromString(\"2000-01-23T04:56:07.000Z\"),\n                                    Author: &components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    Owner: &components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    Components: []string{\n                                        \"Backend\",\n                                        \"Networking\",\n                                    },\n                                    Status: apiclientgo.Pointer(\"[\\\"Done\\\"]\"),\n                                    AssignedTo: &components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    UpdatedBy: &components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    Verification: &components.Verification{\n                                        State: components.StateVerified,\n                                        Metadata: &components.VerificationMetadata{\n                                            LastVerifier: &components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            LastReminder: &components.Reminder{\n                                                Assignee: components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                Requestor: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                RemindAt: 716571,\n                                            },\n                                        },\n                                    },\n                                    CustomData: map[string]components.CustomDataValue{\n                                        \"someCustomField\": components.CustomDataValue{},\n                                    },\n                                    ContactPerson: &components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                },\n                            },\n                            Roles: []components.UserRoleSpecification{\n                                components.UserRoleSpecification{\n                                    Person: &components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                Suggestions: []components.QuerySuggestion{\n                                                    components.QuerySuggestion{\n                                                        Query: \"app:github type:pull author:mortimer\",\n                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                    },\n                                                },\n                                            },\n                                            InviteInfo: &components.InviteInfo{\n                                                Invites: []components.ChannelInviteInfo{\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    Role: components.UserRoleAnswerModerator,\n                                },\n                                components.UserRoleSpecification{\n                                    Person: &components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                Suggestions: []components.QuerySuggestion{\n                                                    components.QuerySuggestion{\n                                                        Query: \"app:github type:pull author:mortimer\",\n                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                    },\n                                                },\n                                            },\n                                            InviteInfo: &components.InviteInfo{\n                                                Invites: []components.ChannelInviteInfo{\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    Role: components.UserRoleAnswerModerator,\n                                },\n                            },\n                        },\n                        QuerySuggestions: &components.QuerySuggestionList{\n                            Suggestions: []components.QuerySuggestion{\n                                components.QuerySuggestion{\n                                    Query: \"app:github type:pull author:mortimer\",\n                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                },\n                            },\n                            Person: &components.Person{\n                                Name: \"George Clooney\",\n                                ObfuscatedID: \"abc123\",\n                                Metadata: &components.PersonMetadata{\n                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                    DatasourceProfile: []components.DatasourceProfile{\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                    },\n                                    Badges: []components.Badge{\n                                        components.Badge{\n                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                            IconConfig: &components.IconConfig{\n                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                Name: apiclientgo.Pointer(\"user\"),\n                                            },\n                                        },\n                                    },\n                                },\n                            },\n                        },\n                    },\n                },\n                components.StructuredTextItem{\n                    Link: apiclientgo.Pointer(\"https://en.wikipedia.org/wiki/Diffuse_sky_radiation\"),\n                    Document: &components.Document{\n                        Metadata: &components.DocumentMetadata{\n                            Datasource: apiclientgo.Pointer(\"datasource\"),\n                            ObjectType: apiclientgo.Pointer(\"Feature Request\"),\n                            Container: apiclientgo.Pointer(\"container\"),\n                            ParentID: apiclientgo.Pointer(\"JIRA_EN-1337\"),\n                            MimeType: apiclientgo.Pointer(\"mimeType\"),\n                            DocumentID: apiclientgo.Pointer(\"documentId\"),\n                            CreateTime: types.MustNewTimeFromString(\"2000-01-23T04:56:07.000Z\"),\n                            UpdateTime: types.MustNewTimeFromString(\"2000-01-23T04:56:07.000Z\"),\n                            Author: &components.Person{\n                                Name: \"George Clooney\",\n                                ObfuscatedID: \"abc123\",\n                                RelatedDocuments: []components.RelatedDocuments{\n                                    components.RelatedDocuments{\n                                        QuerySuggestion: &components.QuerySuggestion{\n                                            Query: \"app:github type:pull author:mortimer\",\n                                            SearchProviderInfo: &components.SearchProviderInfo{\n                                                Name: apiclientgo.Pointer(\"Google\"),\n                                                SearchLinkURLTemplate: apiclientgo.Pointer(\"https://www.google.com/search?q={query}&hl=en\"),\n                                            },\n                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                            RequestOptions: &components.SearchRequestOptions{\n                                                DatasourceFilter: apiclientgo.Pointer(\"JIRA\"),\n                                                DatasourcesFilter: []string{\n                                                    \"JIRA\",\n                                                },\n                                                QueryOverridesFacetFilters: apiclientgo.Pointer(true),\n                                                FacetFilters: []components.FacetFilter{\n                                                    components.FacetFilter{\n                                                        FieldName: apiclientgo.Pointer(\"type\"),\n                                                        Values: []components.FacetFilterValue{\n                                                            components.FacetFilterValue{\n                                                                Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                RelationType: components.RelationTypeEquals.ToPointer(),\n                                                            },\n                                                            components.FacetFilterValue{\n                                                                Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                RelationType: components.RelationTypeEquals.ToPointer(),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                FacetFilterSets: []components.FacetFilterSet{\n                                                    components.FacetFilterSet{\n                                                        Filters: []components.FacetFilter{\n                                                            components.FacetFilter{\n                                                                FieldName: apiclientgo.Pointer(\"type\"),\n                                                                Values: []components.FacetFilterValue{\n                                                                    components.FacetFilterValue{\n                                                                        Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                    },\n                                                                    components.FacetFilterValue{\n                                                                        Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    components.FacetFilterSet{\n                                                        Filters: []components.FacetFilter{\n                                                            components.FacetFilter{\n                                                                FieldName: apiclientgo.Pointer(\"type\"),\n                                                                Values: []components.FacetFilterValue{\n                                                                    components.FacetFilterValue{\n                                                                        Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                    },\n                                                                    components.FacetFilterValue{\n                                                                        Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                FacetBucketSize: 843281,\n                                                AuthTokens: []components.AuthToken{\n                                                    components.AuthToken{\n                                                        AccessToken: \"123abc\",\n                                                        Datasource: \"gmail\",\n                                                        Scope: apiclientgo.Pointer(\"email profile https://www.googleapis.com/auth/gmail.readonly\"),\n                                                        TokenType: apiclientgo.Pointer(\"Bearer\"),\n                                                        AuthUser: apiclientgo.Pointer(\"1\"),\n                                                    },\n                                                },\n                                            },\n                                            Ranges: []components.TextRange{\n                                                components.TextRange{\n                                                    StartIndex: 925801,\n                                                },\n                                                components.TextRange{\n                                                    StartIndex: 925801,\n                                                },\n                                                components.TextRange{\n                                                    StartIndex: 925801,\n                                                },\n                                            },\n                                            InputDetails: &components.SearchRequestInputDetails{\n                                                HasCopyPaste: apiclientgo.Pointer(true),\n                                            },\n                                        },\n                                        Results: []components.SearchResult{\n                                            components.SearchResult{\n                                                Title: apiclientgo.Pointer(\"title\"),\n                                                URL: \"https://example.com/foo/bar\",\n                                                NativeAppURL: apiclientgo.Pointer(\"slack://foo/bar\"),\n                                                Snippets: []components.SearchResultSnippet{\n                                                    components.SearchResultSnippet{\n                                                        MimeType: apiclientgo.Pointer(\"mimeType\"),\n                                                        Snippet: \"snippet\",\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    components.RelatedDocuments{\n                                        QuerySuggestion: &components.QuerySuggestion{\n                                            Query: \"app:github type:pull author:mortimer\",\n                                            SearchProviderInfo: &components.SearchProviderInfo{\n                                                Name: apiclientgo.Pointer(\"Google\"),\n                                                SearchLinkURLTemplate: apiclientgo.Pointer(\"https://www.google.com/search?q={query}&hl=en\"),\n                                            },\n                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                            RequestOptions: &components.SearchRequestOptions{\n                                                DatasourceFilter: apiclientgo.Pointer(\"JIRA\"),\n                                                DatasourcesFilter: []string{\n                                                    \"JIRA\",\n                                                },\n                                                QueryOverridesFacetFilters: apiclientgo.Pointer(true),\n                                                FacetFilters: []components.FacetFilter{\n                                                    components.FacetFilter{\n                                                        FieldName: apiclientgo.Pointer(\"type\"),\n                                                        Values: []components.FacetFilterValue{\n                                                            components.FacetFilterValue{\n                                                                Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                RelationType: components.RelationTypeEquals.ToPointer(),\n                                                            },\n                                                            components.FacetFilterValue{\n                                                                Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                RelationType: components.RelationTypeEquals.ToPointer(),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                FacetFilterSets: []components.FacetFilterSet{\n                                                    components.FacetFilterSet{\n                                                        Filters: []components.FacetFilter{\n                                                            components.FacetFilter{\n                                                                FieldName: apiclientgo.Pointer(\"type\"),\n                                                                Values: []components.FacetFilterValue{\n                                                                    components.FacetFilterValue{\n                                                                        Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                    },\n                                                                    components.FacetFilterValue{\n                                                                        Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    components.FacetFilterSet{\n                                                        Filters: []components.FacetFilter{\n                                                            components.FacetFilter{\n                                                                FieldName: apiclientgo.Pointer(\"type\"),\n                                                                Values: []components.FacetFilterValue{\n                                                                    components.FacetFilterValue{\n                                                                        Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                    },\n                                                                    components.FacetFilterValue{\n                                                                        Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                FacetBucketSize: 843281,\n                                                AuthTokens: []components.AuthToken{\n                                                    components.AuthToken{\n                                                        AccessToken: \"123abc\",\n                                                        Datasource: \"gmail\",\n                                                        Scope: apiclientgo.Pointer(\"email profile https://www.googleapis.com/auth/gmail.readonly\"),\n                                                        TokenType: apiclientgo.Pointer(\"Bearer\"),\n                                                        AuthUser: apiclientgo.Pointer(\"1\"),\n                                                    },\n                                                },\n                                            },\n                                            Ranges: []components.TextRange{\n                                                components.TextRange{\n                                                    StartIndex: 925801,\n                                                },\n                                                components.TextRange{\n                                                    StartIndex: 925801,\n                                                },\n                                                components.TextRange{\n                                                    StartIndex: 925801,\n                                                },\n                                            },\n                                            InputDetails: &components.SearchRequestInputDetails{\n                                                HasCopyPaste: apiclientgo.Pointer(true),\n                                            },\n                                        },\n                                        Results: []components.SearchResult{\n                                            components.SearchResult{\n                                                Title: apiclientgo.Pointer(\"title\"),\n                                                URL: \"https://example.com/foo/bar\",\n                                                NativeAppURL: apiclientgo.Pointer(\"slack://foo/bar\"),\n                                                Snippets: []components.SearchResultSnippet{\n                                                    components.SearchResultSnippet{\n                                                        MimeType: apiclientgo.Pointer(\"mimeType\"),\n                                                        Snippet: \"snippet\",\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    components.RelatedDocuments{\n                                        QuerySuggestion: &components.QuerySuggestion{\n                                            Query: \"app:github type:pull author:mortimer\",\n                                            SearchProviderInfo: &components.SearchProviderInfo{\n                                                Name: apiclientgo.Pointer(\"Google\"),\n                                                SearchLinkURLTemplate: apiclientgo.Pointer(\"https://www.google.com/search?q={query}&hl=en\"),\n                                            },\n                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                            RequestOptions: &components.SearchRequestOptions{\n                                                DatasourceFilter: apiclientgo.Pointer(\"JIRA\"),\n                                                DatasourcesFilter: []string{\n                                                    \"JIRA\",\n                                                },\n                                                QueryOverridesFacetFilters: apiclientgo.Pointer(true),\n                                                FacetFilters: []components.FacetFilter{\n                                                    components.FacetFilter{\n                                                        FieldName: apiclientgo.Pointer(\"type\"),\n                                                        Values: []components.FacetFilterValue{\n                                                            components.FacetFilterValue{\n                                                                Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                RelationType: components.RelationTypeEquals.ToPointer(),\n                                                            },\n                                                            components.FacetFilterValue{\n                                                                Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                RelationType: components.RelationTypeEquals.ToPointer(),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                FacetFilterSets: []components.FacetFilterSet{\n                                                    components.FacetFilterSet{\n                                                        Filters: []components.FacetFilter{\n                                                            components.FacetFilter{\n                                                                FieldName: apiclientgo.Pointer(\"type\"),\n                                                                Values: []components.FacetFilterValue{\n                                                                    components.FacetFilterValue{\n                                                                        Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                    },\n                                                                    components.FacetFilterValue{\n                                                                        Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    components.FacetFilterSet{\n                                                        Filters: []components.FacetFilter{\n                                                            components.FacetFilter{\n                                                                FieldName: apiclientgo.Pointer(\"type\"),\n                                                                Values: []components.FacetFilterValue{\n                                                                    components.FacetFilterValue{\n                                                                        Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                    },\n                                                                    components.FacetFilterValue{\n                                                                        Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                FacetBucketSize: 843281,\n                                                AuthTokens: []components.AuthToken{\n                                                    components.AuthToken{\n                                                        AccessToken: \"123abc\",\n                                                        Datasource: \"gmail\",\n                                                        Scope: apiclientgo.Pointer(\"email profile https://www.googleapis.com/auth/gmail.readonly\"),\n                                                        TokenType: apiclientgo.Pointer(\"Bearer\"),\n                                                        AuthUser: apiclientgo.Pointer(\"1\"),\n                                                    },\n                                                },\n                                            },\n                                            Ranges: []components.TextRange{\n                                                components.TextRange{\n                                                    StartIndex: 925801,\n                                                },\n                                                components.TextRange{\n                                                    StartIndex: 925801,\n                                                },\n                                                components.TextRange{\n                                                    StartIndex: 925801,\n                                                },\n                                            },\n                                            InputDetails: &components.SearchRequestInputDetails{\n                                                HasCopyPaste: apiclientgo.Pointer(true),\n                                            },\n                                        },\n                                        Results: []components.SearchResult{\n                                            components.SearchResult{\n                                                Title: apiclientgo.Pointer(\"title\"),\n                                                URL: \"https://example.com/foo/bar\",\n                                                NativeAppURL: apiclientgo.Pointer(\"slack://foo/bar\"),\n                                                Snippets: []components.SearchResultSnippet{\n                                                    components.SearchResultSnippet{\n                                                        MimeType: apiclientgo.Pointer(\"mimeType\"),\n                                                        Snippet: \"snippet\",\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                },\n                                Metadata: &components.PersonMetadata{\n                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                    DatasourceProfile: []components.DatasourceProfile{\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                    },\n                                    QuerySuggestions: &components.QuerySuggestionList{\n                                        Suggestions: []components.QuerySuggestion{\n                                            components.QuerySuggestion{\n                                                Query: \"app:github type:pull author:mortimer\",\n                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                            },\n                                        },\n                                    },\n                                    InviteInfo: &components.InviteInfo{\n                                        Invites: []components.ChannelInviteInfo{\n                                            components.ChannelInviteInfo{},\n                                            components.ChannelInviteInfo{},\n                                            components.ChannelInviteInfo{},\n                                        },\n                                    },\n                                    CustomFields: []components.CustomFieldData{\n                                        components.CustomFieldData{\n                                            Label: \"<value>\",\n                                            Values: []components.CustomFieldValue{\n                                                components.CreateCustomFieldValueCustomFieldValueStr(\n                                                    components.CustomFieldValueStr{},\n                                                ),\n                                                components.CreateCustomFieldValueCustomFieldValueStr(\n                                                    components.CustomFieldValueStr{},\n                                                ),\n                                            },\n                                        },\n                                        components.CustomFieldData{\n                                            Label: \"<value>\",\n                                            Values: []components.CustomFieldValue{\n                                                components.CreateCustomFieldValueCustomFieldValueStr(\n                                                    components.CustomFieldValueStr{},\n                                                ),\n                                                components.CreateCustomFieldValueCustomFieldValueStr(\n                                                    components.CustomFieldValueStr{},\n                                                ),\n                                            },\n                                        },\n                                        components.CustomFieldData{\n                                            Label: \"<value>\",\n                                            Values: []components.CustomFieldValue{\n                                                components.CreateCustomFieldValueCustomFieldValueStr(\n                                                    components.CustomFieldValueStr{},\n                                                ),\n                                                components.CreateCustomFieldValueCustomFieldValueStr(\n                                                    components.CustomFieldValueStr{},\n                                                ),\n                                            },\n                                        },\n                                    },\n                                    Badges: []components.Badge{\n                                        components.Badge{\n                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                            IconConfig: &components.IconConfig{\n                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                Name: apiclientgo.Pointer(\"user\"),\n                                            },\n                                        },\n                                    },\n                                },\n                            },\n                            Owner: &components.Person{\n                                Name: \"George Clooney\",\n                                ObfuscatedID: \"abc123\",\n                                Metadata: &components.PersonMetadata{\n                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                    DatasourceProfile: []components.DatasourceProfile{\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                    },\n                                    QuerySuggestions: &components.QuerySuggestionList{\n                                        Suggestions: []components.QuerySuggestion{\n                                            components.QuerySuggestion{\n                                                Query: \"app:github type:pull author:mortimer\",\n                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                            },\n                                        },\n                                    },\n                                    InviteInfo: &components.InviteInfo{\n                                        Invites: []components.ChannelInviteInfo{\n                                            components.ChannelInviteInfo{},\n                                            components.ChannelInviteInfo{},\n                                            components.ChannelInviteInfo{},\n                                        },\n                                    },\n                                    Badges: []components.Badge{\n                                        components.Badge{\n                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                            IconConfig: &components.IconConfig{\n                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                Name: apiclientgo.Pointer(\"user\"),\n                                            },\n                                        },\n                                    },\n                                },\n                            },\n                            MentionedPeople: []components.Person{\n                                components.Person{\n                                    Name: \"George Clooney\",\n                                    ObfuscatedID: \"abc123\",\n                                },\n                            },\n                            Components: []string{\n                                \"Backend\",\n                                \"Networking\",\n                            },\n                            Status: apiclientgo.Pointer(\"[\\\"Done\\\"]\"),\n                            Pins: []components.PinDocument{\n                                components.PinDocument{\n                                    AudienceFilters: []components.FacetFilter{\n                                        components.FacetFilter{\n                                            FieldName: apiclientgo.Pointer(\"type\"),\n                                            Values: []components.FacetFilterValue{\n                                                components.FacetFilterValue{\n                                                    Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                    RelationType: components.RelationTypeEquals.ToPointer(),\n                                                },\n                                                components.FacetFilterValue{\n                                                    Value: apiclientgo.Pointer(\"Presentation\"),\n                                                    RelationType: components.RelationTypeEquals.ToPointer(),\n                                                },\n                                            },\n                                        },\n                                    },\n                                    DocumentID: \"<id>\",\n                                    Attribution: &components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                Suggestions: []components.QuerySuggestion{\n                                                    components.QuerySuggestion{\n                                                        Query: \"app:github type:pull author:mortimer\",\n                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                    },\n                                                },\n                                            },\n                                            InviteInfo: &components.InviteInfo{\n                                                Invites: []components.ChannelInviteInfo{\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    UpdatedBy: &components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                Suggestions: []components.QuerySuggestion{\n                                                    components.QuerySuggestion{\n                                                        Query: \"app:github type:pull author:mortimer\",\n                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                    },\n                                                },\n                                            },\n                                            InviteInfo: &components.InviteInfo{\n                                                Invites: []components.ChannelInviteInfo{\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                },\n                                components.PinDocument{\n                                    AudienceFilters: []components.FacetFilter{\n                                        components.FacetFilter{\n                                            FieldName: apiclientgo.Pointer(\"type\"),\n                                            Values: []components.FacetFilterValue{\n                                                components.FacetFilterValue{\n                                                    Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                    RelationType: components.RelationTypeEquals.ToPointer(),\n                                                },\n                                                components.FacetFilterValue{\n                                                    Value: apiclientgo.Pointer(\"Presentation\"),\n                                                    RelationType: components.RelationTypeEquals.ToPointer(),\n                                                },\n                                            },\n                                        },\n                                    },\n                                    DocumentID: \"<id>\",\n                                    Attribution: &components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                Suggestions: []components.QuerySuggestion{\n                                                    components.QuerySuggestion{\n                                                        Query: \"app:github type:pull author:mortimer\",\n                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                    },\n                                                },\n                                            },\n                                            InviteInfo: &components.InviteInfo{\n                                                Invites: []components.ChannelInviteInfo{\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    UpdatedBy: &components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                Suggestions: []components.QuerySuggestion{\n                                                    components.QuerySuggestion{\n                                                        Query: \"app:github type:pull author:mortimer\",\n                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                    },\n                                                },\n                                            },\n                                            InviteInfo: &components.InviteInfo{\n                                                Invites: []components.ChannelInviteInfo{\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                },\n                            },\n                            AssignedTo: &components.Person{\n                                Name: \"George Clooney\",\n                                ObfuscatedID: \"abc123\",\n                                Metadata: &components.PersonMetadata{\n                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                    DatasourceProfile: []components.DatasourceProfile{\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                    },\n                                    QuerySuggestions: &components.QuerySuggestionList{\n                                        Suggestions: []components.QuerySuggestion{\n                                            components.QuerySuggestion{\n                                                Query: \"app:github type:pull author:mortimer\",\n                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                            },\n                                        },\n                                    },\n                                    InviteInfo: &components.InviteInfo{\n                                        Invites: []components.ChannelInviteInfo{\n                                            components.ChannelInviteInfo{},\n                                            components.ChannelInviteInfo{},\n                                            components.ChannelInviteInfo{},\n                                        },\n                                    },\n                                    Badges: []components.Badge{\n                                        components.Badge{\n                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                            IconConfig: &components.IconConfig{\n                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                Name: apiclientgo.Pointer(\"user\"),\n                                            },\n                                        },\n                                    },\n                                },\n                            },\n                            UpdatedBy: &components.Person{\n                                Name: \"George Clooney\",\n                                ObfuscatedID: \"abc123\",\n                                Metadata: &components.PersonMetadata{\n                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                    DatasourceProfile: []components.DatasourceProfile{\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                    },\n                                    QuerySuggestions: &components.QuerySuggestionList{\n                                        Suggestions: []components.QuerySuggestion{\n                                            components.QuerySuggestion{\n                                                Query: \"app:github type:pull author:mortimer\",\n                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                            },\n                                        },\n                                    },\n                                    InviteInfo: &components.InviteInfo{\n                                        Invites: []components.ChannelInviteInfo{\n                                            components.ChannelInviteInfo{},\n                                            components.ChannelInviteInfo{},\n                                            components.ChannelInviteInfo{},\n                                        },\n                                    },\n                                    Badges: []components.Badge{\n                                        components.Badge{\n                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                            IconConfig: &components.IconConfig{\n                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                Name: apiclientgo.Pointer(\"user\"),\n                                            },\n                                        },\n                                    },\n                                },\n                            },\n                            Collections: []components.Collection{\n                                components.Collection{\n                                    Name: \"<value>\",\n                                    Description: \"perfectly flustered dimly\",\n                                    AddedRoles: []components.UserRoleSpecification{\n                                        components.UserRoleSpecification{\n                                            Person: &components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                        Suggestions: []components.QuerySuggestion{\n                                                            components.QuerySuggestion{\n                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                            },\n                                                        },\n                                                    },\n                                                    InviteInfo: &components.InviteInfo{\n                                                        Invites: []components.ChannelInviteInfo{\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            Role: components.UserRoleAnswerModerator,\n                                        },\n                                        components.UserRoleSpecification{\n                                            Person: &components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                        Suggestions: []components.QuerySuggestion{\n                                                            components.QuerySuggestion{\n                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                            },\n                                                        },\n                                                    },\n                                                    InviteInfo: &components.InviteInfo{\n                                                        Invites: []components.ChannelInviteInfo{\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            Role: components.UserRoleAnswerModerator,\n                                        },\n                                        components.UserRoleSpecification{\n                                            Person: &components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                        Suggestions: []components.QuerySuggestion{\n                                                            components.QuerySuggestion{\n                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                            },\n                                                        },\n                                                    },\n                                                    InviteInfo: &components.InviteInfo{\n                                                        Invites: []components.ChannelInviteInfo{\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            Role: components.UserRoleAnswerModerator,\n                                        },\n                                    },\n                                    RemovedRoles: []components.UserRoleSpecification{\n                                        components.UserRoleSpecification{\n                                            Person: &components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                        Suggestions: []components.QuerySuggestion{\n                                                            components.QuerySuggestion{\n                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                            },\n                                                        },\n                                                    },\n                                                    InviteInfo: &components.InviteInfo{\n                                                        Invites: []components.ChannelInviteInfo{\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            Role: components.UserRoleVerifier,\n                                        },\n                                    },\n                                    AudienceFilters: []components.FacetFilter{\n                                        components.FacetFilter{\n                                            FieldName: apiclientgo.Pointer(\"type\"),\n                                            Values: []components.FacetFilterValue{\n                                                components.FacetFilterValue{\n                                                    Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                    RelationType: components.RelationTypeEquals.ToPointer(),\n                                                },\n                                                components.FacetFilterValue{\n                                                    Value: apiclientgo.Pointer(\"Presentation\"),\n                                                    RelationType: components.RelationTypeEquals.ToPointer(),\n                                                },\n                                            },\n                                        },\n                                    },\n                                    ID: 83242,\n                                    Creator: &components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                Suggestions: []components.QuerySuggestion{\n                                                    components.QuerySuggestion{\n                                                        Query: \"app:github type:pull author:mortimer\",\n                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                    },\n                                                },\n                                            },\n                                            InviteInfo: &components.InviteInfo{\n                                                Invites: []components.ChannelInviteInfo{\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    UpdatedBy: &components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                Suggestions: []components.QuerySuggestion{\n                                                    components.QuerySuggestion{\n                                                        Query: \"app:github type:pull author:mortimer\",\n                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                    },\n                                                },\n                                            },\n                                            InviteInfo: &components.InviteInfo{\n                                                Invites: []components.ChannelInviteInfo{\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    Items: []components.CollectionItem{\n                                        components.CollectionItem{\n                                            CollectionID: 420359,\n                                            CreatedBy: &components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                        Suggestions: []components.QuerySuggestion{\n                                                            components.QuerySuggestion{\n                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                            },\n                                                        },\n                                                    },\n                                                    InviteInfo: &components.InviteInfo{\n                                                        Invites: []components.ChannelInviteInfo{\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            Shortcut: &components.Shortcut{\n                                                InputAlias: \"<value>\",\n                                                CreatedBy: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                UpdatedBy: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                Roles: []components.UserRoleSpecification{\n                                                    components.UserRoleSpecification{\n                                                        Person: &components.Person{\n                                                            Name: \"George Clooney\",\n                                                            ObfuscatedID: \"abc123\",\n                                                            Metadata: &components.PersonMetadata{\n                                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                DatasourceProfile: []components.DatasourceProfile{\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                },\n                                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                                    Suggestions: []components.QuerySuggestion{\n                                                                        components.QuerySuggestion{\n                                                                            Query: \"app:github type:pull author:mortimer\",\n                                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                                InviteInfo: &components.InviteInfo{\n                                                                    Invites: []components.ChannelInviteInfo{\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                    },\n                                                                },\n                                                                Badges: []components.Badge{\n                                                                    components.Badge{\n                                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                        IconConfig: &components.IconConfig{\n                                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                        Role: components.UserRoleAnswerModerator,\n                                                    },\n                                                    components.UserRoleSpecification{\n                                                        Person: &components.Person{\n                                                            Name: \"George Clooney\",\n                                                            ObfuscatedID: \"abc123\",\n                                                            Metadata: &components.PersonMetadata{\n                                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                DatasourceProfile: []components.DatasourceProfile{\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                },\n                                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                                    Suggestions: []components.QuerySuggestion{\n                                                                        components.QuerySuggestion{\n                                                                            Query: \"app:github type:pull author:mortimer\",\n                                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                                InviteInfo: &components.InviteInfo{\n                                                                    Invites: []components.ChannelInviteInfo{\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                    },\n                                                                },\n                                                                Badges: []components.Badge{\n                                                                    components.Badge{\n                                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                        IconConfig: &components.IconConfig{\n                                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                        Role: components.UserRoleAnswerModerator,\n                                                    },\n                                                },\n                                            },\n                                            ItemType: components.CollectionItemItemTypeCollection,\n                                        },\n                                        components.CollectionItem{\n                                            CollectionID: 420359,\n                                            CreatedBy: &components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                        Suggestions: []components.QuerySuggestion{\n                                                            components.QuerySuggestion{\n                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                            },\n                                                        },\n                                                    },\n                                                    InviteInfo: &components.InviteInfo{\n                                                        Invites: []components.ChannelInviteInfo{\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            Shortcut: &components.Shortcut{\n                                                InputAlias: \"<value>\",\n                                                CreatedBy: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                UpdatedBy: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                Roles: []components.UserRoleSpecification{\n                                                    components.UserRoleSpecification{\n                                                        Person: &components.Person{\n                                                            Name: \"George Clooney\",\n                                                            ObfuscatedID: \"abc123\",\n                                                            Metadata: &components.PersonMetadata{\n                                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                DatasourceProfile: []components.DatasourceProfile{\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                },\n                                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                                    Suggestions: []components.QuerySuggestion{\n                                                                        components.QuerySuggestion{\n                                                                            Query: \"app:github type:pull author:mortimer\",\n                                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                                InviteInfo: &components.InviteInfo{\n                                                                    Invites: []components.ChannelInviteInfo{\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                    },\n                                                                },\n                                                                Badges: []components.Badge{\n                                                                    components.Badge{\n                                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                        IconConfig: &components.IconConfig{\n                                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                        Role: components.UserRoleAnswerModerator,\n                                                    },\n                                                    components.UserRoleSpecification{\n                                                        Person: &components.Person{\n                                                            Name: \"George Clooney\",\n                                                            ObfuscatedID: \"abc123\",\n                                                            Metadata: &components.PersonMetadata{\n                                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                DatasourceProfile: []components.DatasourceProfile{\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                },\n                                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                                    Suggestions: []components.QuerySuggestion{\n                                                                        components.QuerySuggestion{\n                                                                            Query: \"app:github type:pull author:mortimer\",\n                                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                                InviteInfo: &components.InviteInfo{\n                                                                    Invites: []components.ChannelInviteInfo{\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                    },\n                                                                },\n                                                                Badges: []components.Badge{\n                                                                    components.Badge{\n                                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                        IconConfig: &components.IconConfig{\n                                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                        Role: components.UserRoleAnswerModerator,\n                                                    },\n                                                },\n                                            },\n                                            ItemType: components.CollectionItemItemTypeCollection,\n                                        },\n                                    },\n                                },\n                            },\n                            Interactions: &components.DocumentInteractions{\n                                Reacts: []components.Reaction{\n                                    components.Reaction{\n                                        Reactors: []components.Person{\n                                            components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                            },\n                                        },\n                                    },\n                                    components.Reaction{\n                                        Reactors: []components.Person{\n                                            components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                            },\n                                        },\n                                    },\n                                },\n                                Shares: []components.Share{\n                                    components.Share{\n                                        NumDaysAgo: 582012,\n                                        Sharer: &components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                            Metadata: &components.PersonMetadata{\n                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                DatasourceProfile: []components.DatasourceProfile{\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                },\n                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                    Suggestions: []components.QuerySuggestion{\n                                                        components.QuerySuggestion{\n                                                            Query: \"app:github type:pull author:mortimer\",\n                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                        },\n                                                    },\n                                                },\n                                                InviteInfo: &components.InviteInfo{\n                                                    Invites: []components.ChannelInviteInfo{\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                    },\n                                                },\n                                                Badges: []components.Badge{\n                                                    components.Badge{\n                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                        IconConfig: &components.IconConfig{\n                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                },\n                            },\n                            Verification: &components.Verification{\n                                State: components.StateDeprecated,\n                                Metadata: &components.VerificationMetadata{\n                                    LastVerifier: &components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                Suggestions: []components.QuerySuggestion{\n                                                    components.QuerySuggestion{\n                                                        Query: \"app:github type:pull author:mortimer\",\n                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                    },\n                                                },\n                                            },\n                                            InviteInfo: &components.InviteInfo{\n                                                Invites: []components.ChannelInviteInfo{\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    Reminders: []components.Reminder{\n                                        components.Reminder{\n                                            Assignee: components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                        Suggestions: []components.QuerySuggestion{\n                                                            components.QuerySuggestion{\n                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                            },\n                                                        },\n                                                    },\n                                                    InviteInfo: &components.InviteInfo{\n                                                        Invites: []components.ChannelInviteInfo{\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            Requestor: &components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                        Suggestions: []components.QuerySuggestion{\n                                                            components.QuerySuggestion{\n                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                            },\n                                                        },\n                                                    },\n                                                    InviteInfo: &components.InviteInfo{\n                                                        Invites: []components.ChannelInviteInfo{\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            RemindAt: 785622,\n                                        },\n                                        components.Reminder{\n                                            Assignee: components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                        Suggestions: []components.QuerySuggestion{\n                                                            components.QuerySuggestion{\n                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                            },\n                                                        },\n                                                    },\n                                                    InviteInfo: &components.InviteInfo{\n                                                        Invites: []components.ChannelInviteInfo{\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            Requestor: &components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                        Suggestions: []components.QuerySuggestion{\n                                                            components.QuerySuggestion{\n                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                            },\n                                                        },\n                                                    },\n                                                    InviteInfo: &components.InviteInfo{\n                                                        Invites: []components.ChannelInviteInfo{\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            RemindAt: 785622,\n                                        },\n                                        components.Reminder{\n                                            Assignee: components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                        Suggestions: []components.QuerySuggestion{\n                                                            components.QuerySuggestion{\n                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                            },\n                                                        },\n                                                    },\n                                                    InviteInfo: &components.InviteInfo{\n                                                        Invites: []components.ChannelInviteInfo{\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            Requestor: &components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                        Suggestions: []components.QuerySuggestion{\n                                                            components.QuerySuggestion{\n                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                            },\n                                                        },\n                                                    },\n                                                    InviteInfo: &components.InviteInfo{\n                                                        Invites: []components.ChannelInviteInfo{\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            RemindAt: 785622,\n                                        },\n                                    },\n                                    LastReminder: &components.Reminder{\n                                        Assignee: components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                            Metadata: &components.PersonMetadata{\n                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                DatasourceProfile: []components.DatasourceProfile{\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                },\n                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                    Suggestions: []components.QuerySuggestion{\n                                                        components.QuerySuggestion{\n                                                            Query: \"app:github type:pull author:mortimer\",\n                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                        },\n                                                    },\n                                                },\n                                                InviteInfo: &components.InviteInfo{\n                                                    Invites: []components.ChannelInviteInfo{\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                    },\n                                                },\n                                                Badges: []components.Badge{\n                                                    components.Badge{\n                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                        IconConfig: &components.IconConfig{\n                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        Requestor: &components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                            Metadata: &components.PersonMetadata{\n                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                DatasourceProfile: []components.DatasourceProfile{\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                },\n                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                    Suggestions: []components.QuerySuggestion{\n                                                        components.QuerySuggestion{\n                                                            Query: \"app:github type:pull author:mortimer\",\n                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                        },\n                                                    },\n                                                },\n                                                InviteInfo: &components.InviteInfo{\n                                                    Invites: []components.ChannelInviteInfo{\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                    },\n                                                },\n                                                Badges: []components.Badge{\n                                                    components.Badge{\n                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                        IconConfig: &components.IconConfig{\n                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        RemindAt: 269943,\n                                    },\n                                    CandidateVerifiers: []components.Person{\n                                        components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                        },\n                                    },\n                                },\n                            },\n                            Shortcuts: []components.Shortcut{\n                                components.Shortcut{\n                                    InputAlias: \"<value>\",\n                                    CreatedBy: &components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                Suggestions: []components.QuerySuggestion{\n                                                    components.QuerySuggestion{\n                                                        Query: \"app:github type:pull author:mortimer\",\n                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                    },\n                                                },\n                                            },\n                                            InviteInfo: &components.InviteInfo{\n                                                Invites: []components.ChannelInviteInfo{\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    UpdatedBy: &components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                Suggestions: []components.QuerySuggestion{\n                                                    components.QuerySuggestion{\n                                                        Query: \"app:github type:pull author:mortimer\",\n                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                    },\n                                                },\n                                            },\n                                            InviteInfo: &components.InviteInfo{\n                                                Invites: []components.ChannelInviteInfo{\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                },\n                            },\n                            CustomData: map[string]components.CustomDataValue{\n                                \"someCustomField\": components.CustomDataValue{},\n                            },\n                            ContactPerson: &components.Person{\n                                Name: \"George Clooney\",\n                                ObfuscatedID: \"abc123\",\n                                Metadata: &components.PersonMetadata{\n                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                    DatasourceProfile: []components.DatasourceProfile{\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                    },\n                                    QuerySuggestions: &components.QuerySuggestionList{\n                                        Suggestions: []components.QuerySuggestion{\n                                            components.QuerySuggestion{\n                                                Query: \"app:github type:pull author:mortimer\",\n                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                            },\n                                        },\n                                    },\n                                    InviteInfo: &components.InviteInfo{\n                                        Invites: []components.ChannelInviteInfo{\n                                            components.ChannelInviteInfo{},\n                                            components.ChannelInviteInfo{},\n                                            components.ChannelInviteInfo{},\n                                        },\n                                    },\n                                    Badges: []components.Badge{\n                                        components.Badge{\n                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                            IconConfig: &components.IconConfig{\n                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                Name: apiclientgo.Pointer(\"user\"),\n                                            },\n                                        },\n                                    },\n                                },\n                            },\n                        },\n                    },\n                    Text: apiclientgo.Pointer(\"Because its wavelengths are shorter, blue light is more strongly scattered than the longer-wavelength lights, red or green. Hence the result that when looking at the sky away from the direct incident sunlight, the human eye perceives the sky to be blue.\"),\n                    StructuredResult: &components.StructuredResult{\n                        Document: &components.Document{\n                            Metadata: &components.DocumentMetadata{\n                                Datasource: apiclientgo.Pointer(\"datasource\"),\n                                ObjectType: apiclientgo.Pointer(\"Feature Request\"),\n                                Container: apiclientgo.Pointer(\"container\"),\n                                ParentID: apiclientgo.Pointer(\"JIRA_EN-1337\"),\n                                MimeType: apiclientgo.Pointer(\"mimeType\"),\n                                DocumentID: apiclientgo.Pointer(\"documentId\"),\n                                CreateTime: types.MustNewTimeFromString(\"2000-01-23T04:56:07.000Z\"),\n                                UpdateTime: types.MustNewTimeFromString(\"2000-01-23T04:56:07.000Z\"),\n                                Author: &components.Person{\n                                    Name: \"George Clooney\",\n                                    ObfuscatedID: \"abc123\",\n                                    RelatedDocuments: []components.RelatedDocuments{\n                                        components.RelatedDocuments{\n                                            QuerySuggestion: &components.QuerySuggestion{\n                                                Query: \"app:github type:pull author:mortimer\",\n                                                SearchProviderInfo: &components.SearchProviderInfo{\n                                                    Name: apiclientgo.Pointer(\"Google\"),\n                                                    SearchLinkURLTemplate: apiclientgo.Pointer(\"https://www.google.com/search?q={query}&hl=en\"),\n                                                },\n                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                RequestOptions: &components.SearchRequestOptions{\n                                                    DatasourceFilter: apiclientgo.Pointer(\"JIRA\"),\n                                                    DatasourcesFilter: []string{\n                                                        \"JIRA\",\n                                                    },\n                                                    QueryOverridesFacetFilters: apiclientgo.Pointer(true),\n                                                    FacetFilters: []components.FacetFilter{\n                                                        components.FacetFilter{\n                                                            FieldName: apiclientgo.Pointer(\"type\"),\n                                                            Values: []components.FacetFilterValue{\n                                                                components.FacetFilterValue{\n                                                                    Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                    RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                },\n                                                                components.FacetFilterValue{\n                                                                    Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                    RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    FacetFilterSets: []components.FacetFilterSet{\n                                                        components.FacetFilterSet{\n                                                            Filters: []components.FacetFilter{\n                                                                components.FacetFilter{\n                                                                    FieldName: apiclientgo.Pointer(\"type\"),\n                                                                    Values: []components.FacetFilterValue{\n                                                                        components.FacetFilterValue{\n                                                                            Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                            RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                        },\n                                                                        components.FacetFilterValue{\n                                                                            Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                            RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                        components.FacetFilterSet{\n                                                            Filters: []components.FacetFilter{\n                                                                components.FacetFilter{\n                                                                    FieldName: apiclientgo.Pointer(\"type\"),\n                                                                    Values: []components.FacetFilterValue{\n                                                                        components.FacetFilterValue{\n                                                                            Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                            RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                        },\n                                                                        components.FacetFilterValue{\n                                                                            Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                            RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    FacetBucketSize: 843281,\n                                                    AuthTokens: []components.AuthToken{\n                                                        components.AuthToken{\n                                                            AccessToken: \"123abc\",\n                                                            Datasource: \"gmail\",\n                                                            Scope: apiclientgo.Pointer(\"email profile https://www.googleapis.com/auth/gmail.readonly\"),\n                                                            TokenType: apiclientgo.Pointer(\"Bearer\"),\n                                                            AuthUser: apiclientgo.Pointer(\"1\"),\n                                                        },\n                                                    },\n                                                },\n                                                Ranges: []components.TextRange{\n                                                    components.TextRange{\n                                                        StartIndex: 925801,\n                                                    },\n                                                    components.TextRange{\n                                                        StartIndex: 925801,\n                                                    },\n                                                    components.TextRange{\n                                                        StartIndex: 925801,\n                                                    },\n                                                },\n                                                InputDetails: &components.SearchRequestInputDetails{\n                                                    HasCopyPaste: apiclientgo.Pointer(true),\n                                                },\n                                            },\n                                            Results: []components.SearchResult{\n                                                components.SearchResult{\n                                                    Title: apiclientgo.Pointer(\"title\"),\n                                                    URL: \"https://example.com/foo/bar\",\n                                                    NativeAppURL: apiclientgo.Pointer(\"slack://foo/bar\"),\n                                                    Snippets: []components.SearchResultSnippet{\n                                                        components.SearchResultSnippet{\n                                                            MimeType: apiclientgo.Pointer(\"mimeType\"),\n                                                            Snippet: \"snippet\",\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        components.RelatedDocuments{\n                                            QuerySuggestion: &components.QuerySuggestion{\n                                                Query: \"app:github type:pull author:mortimer\",\n                                                SearchProviderInfo: &components.SearchProviderInfo{\n                                                    Name: apiclientgo.Pointer(\"Google\"),\n                                                    SearchLinkURLTemplate: apiclientgo.Pointer(\"https://www.google.com/search?q={query}&hl=en\"),\n                                                },\n                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                RequestOptions: &components.SearchRequestOptions{\n                                                    DatasourceFilter: apiclientgo.Pointer(\"JIRA\"),\n                                                    DatasourcesFilter: []string{\n                                                        \"JIRA\",\n                                                    },\n                                                    QueryOverridesFacetFilters: apiclientgo.Pointer(true),\n                                                    FacetFilters: []components.FacetFilter{\n                                                        components.FacetFilter{\n                                                            FieldName: apiclientgo.Pointer(\"type\"),\n                                                            Values: []components.FacetFilterValue{\n                                                                components.FacetFilterValue{\n                                                                    Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                    RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                },\n                                                                components.FacetFilterValue{\n                                                                    Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                    RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    FacetFilterSets: []components.FacetFilterSet{\n                                                        components.FacetFilterSet{\n                                                            Filters: []components.FacetFilter{\n                                                                components.FacetFilter{\n                                                                    FieldName: apiclientgo.Pointer(\"type\"),\n                                                                    Values: []components.FacetFilterValue{\n                                                                        components.FacetFilterValue{\n                                                                            Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                            RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                        },\n                                                                        components.FacetFilterValue{\n                                                                            Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                            RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                        components.FacetFilterSet{\n                                                            Filters: []components.FacetFilter{\n                                                                components.FacetFilter{\n                                                                    FieldName: apiclientgo.Pointer(\"type\"),\n                                                                    Values: []components.FacetFilterValue{\n                                                                        components.FacetFilterValue{\n                                                                            Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                            RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                        },\n                                                                        components.FacetFilterValue{\n                                                                            Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                            RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    FacetBucketSize: 843281,\n                                                    AuthTokens: []components.AuthToken{\n                                                        components.AuthToken{\n                                                            AccessToken: \"123abc\",\n                                                            Datasource: \"gmail\",\n                                                            Scope: apiclientgo.Pointer(\"email profile https://www.googleapis.com/auth/gmail.readonly\"),\n                                                            TokenType: apiclientgo.Pointer(\"Bearer\"),\n                                                            AuthUser: apiclientgo.Pointer(\"1\"),\n                                                        },\n                                                    },\n                                                },\n                                                Ranges: []components.TextRange{\n                                                    components.TextRange{\n                                                        StartIndex: 925801,\n                                                    },\n                                                    components.TextRange{\n                                                        StartIndex: 925801,\n                                                    },\n                                                    components.TextRange{\n                                                        StartIndex: 925801,\n                                                    },\n                                                },\n                                                InputDetails: &components.SearchRequestInputDetails{\n                                                    HasCopyPaste: apiclientgo.Pointer(true),\n                                                },\n                                            },\n                                            Results: []components.SearchResult{\n                                                components.SearchResult{\n                                                    Title: apiclientgo.Pointer(\"title\"),\n                                                    URL: \"https://example.com/foo/bar\",\n                                                    NativeAppURL: apiclientgo.Pointer(\"slack://foo/bar\"),\n                                                    Snippets: []components.SearchResultSnippet{\n                                                        components.SearchResultSnippet{\n                                                            MimeType: apiclientgo.Pointer(\"mimeType\"),\n                                                            Snippet: \"snippet\",\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        components.RelatedDocuments{\n                                            QuerySuggestion: &components.QuerySuggestion{\n                                                Query: \"app:github type:pull author:mortimer\",\n                                                SearchProviderInfo: &components.SearchProviderInfo{\n                                                    Name: apiclientgo.Pointer(\"Google\"),\n                                                    SearchLinkURLTemplate: apiclientgo.Pointer(\"https://www.google.com/search?q={query}&hl=en\"),\n                                                },\n                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                RequestOptions: &components.SearchRequestOptions{\n                                                    DatasourceFilter: apiclientgo.Pointer(\"JIRA\"),\n                                                    DatasourcesFilter: []string{\n                                                        \"JIRA\",\n                                                    },\n                                                    QueryOverridesFacetFilters: apiclientgo.Pointer(true),\n                                                    FacetFilters: []components.FacetFilter{\n                                                        components.FacetFilter{\n                                                            FieldName: apiclientgo.Pointer(\"type\"),\n                                                            Values: []components.FacetFilterValue{\n                                                                components.FacetFilterValue{\n                                                                    Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                    RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                },\n                                                                components.FacetFilterValue{\n                                                                    Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                    RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    FacetFilterSets: []components.FacetFilterSet{\n                                                        components.FacetFilterSet{\n                                                            Filters: []components.FacetFilter{\n                                                                components.FacetFilter{\n                                                                    FieldName: apiclientgo.Pointer(\"type\"),\n                                                                    Values: []components.FacetFilterValue{\n                                                                        components.FacetFilterValue{\n                                                                            Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                            RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                        },\n                                                                        components.FacetFilterValue{\n                                                                            Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                            RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                        components.FacetFilterSet{\n                                                            Filters: []components.FacetFilter{\n                                                                components.FacetFilter{\n                                                                    FieldName: apiclientgo.Pointer(\"type\"),\n                                                                    Values: []components.FacetFilterValue{\n                                                                        components.FacetFilterValue{\n                                                                            Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                            RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                        },\n                                                                        components.FacetFilterValue{\n                                                                            Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                            RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    FacetBucketSize: 843281,\n                                                    AuthTokens: []components.AuthToken{\n                                                        components.AuthToken{\n                                                            AccessToken: \"123abc\",\n                                                            Datasource: \"gmail\",\n                                                            Scope: apiclientgo.Pointer(\"email profile https://www.googleapis.com/auth/gmail.readonly\"),\n                                                            TokenType: apiclientgo.Pointer(\"Bearer\"),\n                                                            AuthUser: apiclientgo.Pointer(\"1\"),\n                                                        },\n                                                    },\n                                                },\n                                                Ranges: []components.TextRange{\n                                                    components.TextRange{\n                                                        StartIndex: 925801,\n                                                    },\n                                                    components.TextRange{\n                                                        StartIndex: 925801,\n                                                    },\n                                                    components.TextRange{\n                                                        StartIndex: 925801,\n                                                    },\n                                                },\n                                                InputDetails: &components.SearchRequestInputDetails{\n                                                    HasCopyPaste: apiclientgo.Pointer(true),\n                                                },\n                                            },\n                                            Results: []components.SearchResult{\n                                                components.SearchResult{\n                                                    Title: apiclientgo.Pointer(\"title\"),\n                                                    URL: \"https://example.com/foo/bar\",\n                                                    NativeAppURL: apiclientgo.Pointer(\"slack://foo/bar\"),\n                                                    Snippets: []components.SearchResultSnippet{\n                                                        components.SearchResultSnippet{\n                                                            MimeType: apiclientgo.Pointer(\"mimeType\"),\n                                                            Snippet: \"snippet\",\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    Metadata: &components.PersonMetadata{\n                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                        DatasourceProfile: []components.DatasourceProfile{\n                                            components.DatasourceProfile{\n                                                Datasource: \"github\",\n                                                Handle: \"<value>\",\n                                            },\n                                            components.DatasourceProfile{\n                                                Datasource: \"github\",\n                                                Handle: \"<value>\",\n                                            },\n                                            components.DatasourceProfile{\n                                                Datasource: \"github\",\n                                                Handle: \"<value>\",\n                                            },\n                                        },\n                                        QuerySuggestions: &components.QuerySuggestionList{\n                                            Suggestions: []components.QuerySuggestion{\n                                                components.QuerySuggestion{\n                                                    Query: \"app:github type:pull author:mortimer\",\n                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                },\n                                            },\n                                        },\n                                        InviteInfo: &components.InviteInfo{\n                                            Invites: []components.ChannelInviteInfo{\n                                                components.ChannelInviteInfo{},\n                                                components.ChannelInviteInfo{},\n                                                components.ChannelInviteInfo{},\n                                            },\n                                        },\n                                        CustomFields: []components.CustomFieldData{\n                                            components.CustomFieldData{\n                                                Label: \"<value>\",\n                                                Values: []components.CustomFieldValue{\n                                                    components.CreateCustomFieldValueCustomFieldValueStr(\n                                                        components.CustomFieldValueStr{},\n                                                    ),\n                                                    components.CreateCustomFieldValueCustomFieldValueStr(\n                                                        components.CustomFieldValueStr{},\n                                                    ),\n                                                },\n                                            },\n                                            components.CustomFieldData{\n                                                Label: \"<value>\",\n                                                Values: []components.CustomFieldValue{\n                                                    components.CreateCustomFieldValueCustomFieldValueStr(\n                                                        components.CustomFieldValueStr{},\n                                                    ),\n                                                    components.CreateCustomFieldValueCustomFieldValueStr(\n                                                        components.CustomFieldValueStr{},\n                                                    ),\n                                                },\n                                            },\n                                            components.CustomFieldData{\n                                                Label: \"<value>\",\n                                                Values: []components.CustomFieldValue{\n                                                    components.CreateCustomFieldValueCustomFieldValueStr(\n                                                        components.CustomFieldValueStr{},\n                                                    ),\n                                                    components.CreateCustomFieldValueCustomFieldValueStr(\n                                                        components.CustomFieldValueStr{},\n                                                    ),\n                                                },\n                                            },\n                                        },\n                                        Badges: []components.Badge{\n                                            components.Badge{\n                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                IconConfig: &components.IconConfig{\n                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                },\n                                            },\n                                        },\n                                    },\n                                },\n                                Owner: &components.Person{\n                                    Name: \"George Clooney\",\n                                    ObfuscatedID: \"abc123\",\n                                    Metadata: &components.PersonMetadata{\n                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                        DatasourceProfile: []components.DatasourceProfile{\n                                            components.DatasourceProfile{\n                                                Datasource: \"github\",\n                                                Handle: \"<value>\",\n                                            },\n                                            components.DatasourceProfile{\n                                                Datasource: \"github\",\n                                                Handle: \"<value>\",\n                                            },\n                                            components.DatasourceProfile{\n                                                Datasource: \"github\",\n                                                Handle: \"<value>\",\n                                            },\n                                        },\n                                        QuerySuggestions: &components.QuerySuggestionList{\n                                            Suggestions: []components.QuerySuggestion{\n                                                components.QuerySuggestion{\n                                                    Query: \"app:github type:pull author:mortimer\",\n                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                },\n                                            },\n                                        },\n                                        InviteInfo: &components.InviteInfo{\n                                            Invites: []components.ChannelInviteInfo{\n                                                components.ChannelInviteInfo{},\n                                                components.ChannelInviteInfo{},\n                                                components.ChannelInviteInfo{},\n                                            },\n                                        },\n                                        Badges: []components.Badge{\n                                            components.Badge{\n                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                IconConfig: &components.IconConfig{\n                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                },\n                                            },\n                                        },\n                                    },\n                                },\n                                MentionedPeople: []components.Person{\n                                    components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                    },\n                                },\n                                Components: []string{\n                                    \"Backend\",\n                                    \"Networking\",\n                                },\n                                Status: apiclientgo.Pointer(\"[\\\"Done\\\"]\"),\n                                Pins: []components.PinDocument{\n                                    components.PinDocument{\n                                        AudienceFilters: []components.FacetFilter{\n                                            components.FacetFilter{\n                                                FieldName: apiclientgo.Pointer(\"type\"),\n                                                Values: []components.FacetFilterValue{\n                                                    components.FacetFilterValue{\n                                                        Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                    },\n                                                    components.FacetFilterValue{\n                                                        Value: apiclientgo.Pointer(\"Presentation\"),\n                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        DocumentID: \"<id>\",\n                                        Attribution: &components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                            Metadata: &components.PersonMetadata{\n                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                DatasourceProfile: []components.DatasourceProfile{\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                },\n                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                    Suggestions: []components.QuerySuggestion{\n                                                        components.QuerySuggestion{\n                                                            Query: \"app:github type:pull author:mortimer\",\n                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                        },\n                                                    },\n                                                },\n                                                InviteInfo: &components.InviteInfo{\n                                                    Invites: []components.ChannelInviteInfo{\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                    },\n                                                },\n                                                Badges: []components.Badge{\n                                                    components.Badge{\n                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                        IconConfig: &components.IconConfig{\n                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        UpdatedBy: &components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                            Metadata: &components.PersonMetadata{\n                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                DatasourceProfile: []components.DatasourceProfile{\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                },\n                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                    Suggestions: []components.QuerySuggestion{\n                                                        components.QuerySuggestion{\n                                                            Query: \"app:github type:pull author:mortimer\",\n                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                        },\n                                                    },\n                                                },\n                                                InviteInfo: &components.InviteInfo{\n                                                    Invites: []components.ChannelInviteInfo{\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                    },\n                                                },\n                                                Badges: []components.Badge{\n                                                    components.Badge{\n                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                        IconConfig: &components.IconConfig{\n                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    components.PinDocument{\n                                        AudienceFilters: []components.FacetFilter{\n                                            components.FacetFilter{\n                                                FieldName: apiclientgo.Pointer(\"type\"),\n                                                Values: []components.FacetFilterValue{\n                                                    components.FacetFilterValue{\n                                                        Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                    },\n                                                    components.FacetFilterValue{\n                                                        Value: apiclientgo.Pointer(\"Presentation\"),\n                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        DocumentID: \"<id>\",\n                                        Attribution: &components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                            Metadata: &components.PersonMetadata{\n                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                DatasourceProfile: []components.DatasourceProfile{\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                },\n                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                    Suggestions: []components.QuerySuggestion{\n                                                        components.QuerySuggestion{\n                                                            Query: \"app:github type:pull author:mortimer\",\n                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                        },\n                                                    },\n                                                },\n                                                InviteInfo: &components.InviteInfo{\n                                                    Invites: []components.ChannelInviteInfo{\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                    },\n                                                },\n                                                Badges: []components.Badge{\n                                                    components.Badge{\n                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                        IconConfig: &components.IconConfig{\n                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        UpdatedBy: &components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                            Metadata: &components.PersonMetadata{\n                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                DatasourceProfile: []components.DatasourceProfile{\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                },\n                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                    Suggestions: []components.QuerySuggestion{\n                                                        components.QuerySuggestion{\n                                                            Query: \"app:github type:pull author:mortimer\",\n                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                        },\n                                                    },\n                                                },\n                                                InviteInfo: &components.InviteInfo{\n                                                    Invites: []components.ChannelInviteInfo{\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                    },\n                                                },\n                                                Badges: []components.Badge{\n                                                    components.Badge{\n                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                        IconConfig: &components.IconConfig{\n                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                },\n                                AssignedTo: &components.Person{\n                                    Name: \"George Clooney\",\n                                    ObfuscatedID: \"abc123\",\n                                    Metadata: &components.PersonMetadata{\n                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                        DatasourceProfile: []components.DatasourceProfile{\n                                            components.DatasourceProfile{\n                                                Datasource: \"github\",\n                                                Handle: \"<value>\",\n                                            },\n                                            components.DatasourceProfile{\n                                                Datasource: \"github\",\n                                                Handle: \"<value>\",\n                                            },\n                                            components.DatasourceProfile{\n                                                Datasource: \"github\",\n                                                Handle: \"<value>\",\n                                            },\n                                        },\n                                        QuerySuggestions: &components.QuerySuggestionList{\n                                            Suggestions: []components.QuerySuggestion{\n                                                components.QuerySuggestion{\n                                                    Query: \"app:github type:pull author:mortimer\",\n                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                },\n                                            },\n                                        },\n                                        InviteInfo: &components.InviteInfo{\n                                            Invites: []components.ChannelInviteInfo{\n                                                components.ChannelInviteInfo{},\n                                                components.ChannelInviteInfo{},\n                                                components.ChannelInviteInfo{},\n                                            },\n                                        },\n                                        Badges: []components.Badge{\n                                            components.Badge{\n                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                IconConfig: &components.IconConfig{\n                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                },\n                                            },\n                                        },\n                                    },\n                                },\n                                UpdatedBy: &components.Person{\n                                    Name: \"George Clooney\",\n                                    ObfuscatedID: \"abc123\",\n                                    Metadata: &components.PersonMetadata{\n                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                        DatasourceProfile: []components.DatasourceProfile{\n                                            components.DatasourceProfile{\n                                                Datasource: \"github\",\n                                                Handle: \"<value>\",\n                                            },\n                                            components.DatasourceProfile{\n                                                Datasource: \"github\",\n                                                Handle: \"<value>\",\n                                            },\n                                            components.DatasourceProfile{\n                                                Datasource: \"github\",\n                                                Handle: \"<value>\",\n                                            },\n                                        },\n                                        QuerySuggestions: &components.QuerySuggestionList{\n                                            Suggestions: []components.QuerySuggestion{\n                                                components.QuerySuggestion{\n                                                    Query: \"app:github type:pull author:mortimer\",\n                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                },\n                                            },\n                                        },\n                                        InviteInfo: &components.InviteInfo{\n                                            Invites: []components.ChannelInviteInfo{\n                                                components.ChannelInviteInfo{},\n                                                components.ChannelInviteInfo{},\n                                                components.ChannelInviteInfo{},\n                                            },\n                                        },\n                                        Badges: []components.Badge{\n                                            components.Badge{\n                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                IconConfig: &components.IconConfig{\n                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                },\n                                            },\n                                        },\n                                    },\n                                },\n                                Collections: []components.Collection{\n                                    components.Collection{\n                                        Name: \"<value>\",\n                                        Description: \"perfectly flustered dimly\",\n                                        AddedRoles: []components.UserRoleSpecification{\n                                            components.UserRoleSpecification{\n                                                Person: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                Role: components.UserRoleAnswerModerator,\n                                            },\n                                            components.UserRoleSpecification{\n                                                Person: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                Role: components.UserRoleAnswerModerator,\n                                            },\n                                            components.UserRoleSpecification{\n                                                Person: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                Role: components.UserRoleAnswerModerator,\n                                            },\n                                        },\n                                        RemovedRoles: []components.UserRoleSpecification{\n                                            components.UserRoleSpecification{\n                                                Person: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                Role: components.UserRoleVerifier,\n                                            },\n                                        },\n                                        AudienceFilters: []components.FacetFilter{\n                                            components.FacetFilter{\n                                                FieldName: apiclientgo.Pointer(\"type\"),\n                                                Values: []components.FacetFilterValue{\n                                                    components.FacetFilterValue{\n                                                        Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                    },\n                                                    components.FacetFilterValue{\n                                                        Value: apiclientgo.Pointer(\"Presentation\"),\n                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        ID: 83242,\n                                        Creator: &components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                            Metadata: &components.PersonMetadata{\n                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                DatasourceProfile: []components.DatasourceProfile{\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                },\n                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                    Suggestions: []components.QuerySuggestion{\n                                                        components.QuerySuggestion{\n                                                            Query: \"app:github type:pull author:mortimer\",\n                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                        },\n                                                    },\n                                                },\n                                                InviteInfo: &components.InviteInfo{\n                                                    Invites: []components.ChannelInviteInfo{\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                    },\n                                                },\n                                                Badges: []components.Badge{\n                                                    components.Badge{\n                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                        IconConfig: &components.IconConfig{\n                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        UpdatedBy: &components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                            Metadata: &components.PersonMetadata{\n                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                DatasourceProfile: []components.DatasourceProfile{\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                },\n                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                    Suggestions: []components.QuerySuggestion{\n                                                        components.QuerySuggestion{\n                                                            Query: \"app:github type:pull author:mortimer\",\n                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                        },\n                                                    },\n                                                },\n                                                InviteInfo: &components.InviteInfo{\n                                                    Invites: []components.ChannelInviteInfo{\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                    },\n                                                },\n                                                Badges: []components.Badge{\n                                                    components.Badge{\n                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                        IconConfig: &components.IconConfig{\n                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        Items: []components.CollectionItem{\n                                            components.CollectionItem{\n                                                CollectionID: 420359,\n                                                CreatedBy: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                Shortcut: &components.Shortcut{\n                                                    InputAlias: \"<value>\",\n                                                    CreatedBy: &components.Person{\n                                                        Name: \"George Clooney\",\n                                                        ObfuscatedID: \"abc123\",\n                                                        Metadata: &components.PersonMetadata{\n                                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                            DatasourceProfile: []components.DatasourceProfile{\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                            },\n                                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                                Suggestions: []components.QuerySuggestion{\n                                                                    components.QuerySuggestion{\n                                                                        Query: \"app:github type:pull author:mortimer\",\n                                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                            InviteInfo: &components.InviteInfo{\n                                                                Invites: []components.ChannelInviteInfo{\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                },\n                                                            },\n                                                            Badges: []components.Badge{\n                                                                components.Badge{\n                                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                    IconConfig: &components.IconConfig{\n                                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    UpdatedBy: &components.Person{\n                                                        Name: \"George Clooney\",\n                                                        ObfuscatedID: \"abc123\",\n                                                        Metadata: &components.PersonMetadata{\n                                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                            DatasourceProfile: []components.DatasourceProfile{\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                            },\n                                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                                Suggestions: []components.QuerySuggestion{\n                                                                    components.QuerySuggestion{\n                                                                        Query: \"app:github type:pull author:mortimer\",\n                                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                            InviteInfo: &components.InviteInfo{\n                                                                Invites: []components.ChannelInviteInfo{\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                },\n                                                            },\n                                                            Badges: []components.Badge{\n                                                                components.Badge{\n                                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                    IconConfig: &components.IconConfig{\n                                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    Roles: []components.UserRoleSpecification{\n                                                        components.UserRoleSpecification{\n                                                            Person: &components.Person{\n                                                                Name: \"George Clooney\",\n                                                                ObfuscatedID: \"abc123\",\n                                                                Metadata: &components.PersonMetadata{\n                                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                                        components.DatasourceProfile{\n                                                                            Datasource: \"github\",\n                                                                            Handle: \"<value>\",\n                                                                        },\n                                                                        components.DatasourceProfile{\n                                                                            Datasource: \"github\",\n                                                                            Handle: \"<value>\",\n                                                                        },\n                                                                    },\n                                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                                        Suggestions: []components.QuerySuggestion{\n                                                                            components.QuerySuggestion{\n                                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                    InviteInfo: &components.InviteInfo{\n                                                                        Invites: []components.ChannelInviteInfo{\n                                                                            components.ChannelInviteInfo{},\n                                                                            components.ChannelInviteInfo{},\n                                                                            components.ChannelInviteInfo{},\n                                                                        },\n                                                                    },\n                                                                    Badges: []components.Badge{\n                                                                        components.Badge{\n                                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                            IconConfig: &components.IconConfig{\n                                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                            Role: components.UserRoleAnswerModerator,\n                                                        },\n                                                        components.UserRoleSpecification{\n                                                            Person: &components.Person{\n                                                                Name: \"George Clooney\",\n                                                                ObfuscatedID: \"abc123\",\n                                                                Metadata: &components.PersonMetadata{\n                                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                                        components.DatasourceProfile{\n                                                                            Datasource: \"github\",\n                                                                            Handle: \"<value>\",\n                                                                        },\n                                                                        components.DatasourceProfile{\n                                                                            Datasource: \"github\",\n                                                                            Handle: \"<value>\",\n                                                                        },\n                                                                    },\n                                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                                        Suggestions: []components.QuerySuggestion{\n                                                                            components.QuerySuggestion{\n                                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                    InviteInfo: &components.InviteInfo{\n                                                                        Invites: []components.ChannelInviteInfo{\n                                                                            components.ChannelInviteInfo{},\n                                                                            components.ChannelInviteInfo{},\n                                                                            components.ChannelInviteInfo{},\n                                                                        },\n                                                                    },\n                                                                    Badges: []components.Badge{\n                                                                        components.Badge{\n                                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                            IconConfig: &components.IconConfig{\n                                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                            Role: components.UserRoleAnswerModerator,\n                                                        },\n                                                    },\n                                                },\n                                                ItemType: components.CollectionItemItemTypeCollection,\n                                            },\n                                            components.CollectionItem{\n                                                CollectionID: 420359,\n                                                CreatedBy: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                Shortcut: &components.Shortcut{\n                                                    InputAlias: \"<value>\",\n                                                    CreatedBy: &components.Person{\n                                                        Name: \"George Clooney\",\n                                                        ObfuscatedID: \"abc123\",\n                                                        Metadata: &components.PersonMetadata{\n                                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                            DatasourceProfile: []components.DatasourceProfile{\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                            },\n                                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                                Suggestions: []components.QuerySuggestion{\n                                                                    components.QuerySuggestion{\n                                                                        Query: \"app:github type:pull author:mortimer\",\n                                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                            InviteInfo: &components.InviteInfo{\n                                                                Invites: []components.ChannelInviteInfo{\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                },\n                                                            },\n                                                            Badges: []components.Badge{\n                                                                components.Badge{\n                                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                    IconConfig: &components.IconConfig{\n                                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    UpdatedBy: &components.Person{\n                                                        Name: \"George Clooney\",\n                                                        ObfuscatedID: \"abc123\",\n                                                        Metadata: &components.PersonMetadata{\n                                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                            DatasourceProfile: []components.DatasourceProfile{\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                            },\n                                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                                Suggestions: []components.QuerySuggestion{\n                                                                    components.QuerySuggestion{\n                                                                        Query: \"app:github type:pull author:mortimer\",\n                                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                            InviteInfo: &components.InviteInfo{\n                                                                Invites: []components.ChannelInviteInfo{\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                },\n                                                            },\n                                                            Badges: []components.Badge{\n                                                                components.Badge{\n                                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                    IconConfig: &components.IconConfig{\n                                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    Roles: []components.UserRoleSpecification{\n                                                        components.UserRoleSpecification{\n                                                            Person: &components.Person{\n                                                                Name: \"George Clooney\",\n                                                                ObfuscatedID: \"abc123\",\n                                                                Metadata: &components.PersonMetadata{\n                                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                                        components.DatasourceProfile{\n                                                                            Datasource: \"github\",\n                                                                            Handle: \"<value>\",\n                                                                        },\n                                                                        components.DatasourceProfile{\n                                                                            Datasource: \"github\",\n                                                                            Handle: \"<value>\",\n                                                                        },\n                                                                    },\n                                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                                        Suggestions: []components.QuerySuggestion{\n                                                                            components.QuerySuggestion{\n                                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                    InviteInfo: &components.InviteInfo{\n                                                                        Invites: []components.ChannelInviteInfo{\n                                                                            components.ChannelInviteInfo{},\n                                                                            components.ChannelInviteInfo{},\n                                                                            components.ChannelInviteInfo{},\n                                                                        },\n                                                                    },\n                                                                    Badges: []components.Badge{\n                                                                        components.Badge{\n                                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                            IconConfig: &components.IconConfig{\n                                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                            Role: components.UserRoleAnswerModerator,\n                                                        },\n                                                        components.UserRoleSpecification{\n                                                            Person: &components.Person{\n                                                                Name: \"George Clooney\",\n                                                                ObfuscatedID: \"abc123\",\n                                                                Metadata: &components.PersonMetadata{\n                                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                                        components.DatasourceProfile{\n                                                                            Datasource: \"github\",\n                                                                            Handle: \"<value>\",\n                                                                        },\n                                                                        components.DatasourceProfile{\n                                                                            Datasource: \"github\",\n                                                                            Handle: \"<value>\",\n                                                                        },\n                                                                    },\n                                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                                        Suggestions: []components.QuerySuggestion{\n                                                                            components.QuerySuggestion{\n                                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                    InviteInfo: &components.InviteInfo{\n                                                                        Invites: []components.ChannelInviteInfo{\n                                                                            components.ChannelInviteInfo{},\n                                                                            components.ChannelInviteInfo{},\n                                                                            components.ChannelInviteInfo{},\n                                                                        },\n                                                                    },\n                                                                    Badges: []components.Badge{\n                                                                        components.Badge{\n                                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                            IconConfig: &components.IconConfig{\n                                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                            Role: components.UserRoleAnswerModerator,\n                                                        },\n                                                    },\n                                                },\n                                                ItemType: components.CollectionItemItemTypeCollection,\n                                            },\n                                        },\n                                    },\n                                },\n                                Interactions: &components.DocumentInteractions{\n                                    Reacts: []components.Reaction{\n                                        components.Reaction{\n                                            Reactors: []components.Person{\n                                                components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                },\n                                            },\n                                        },\n                                        components.Reaction{\n                                            Reactors: []components.Person{\n                                                components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                },\n                                            },\n                                        },\n                                    },\n                                    Shares: []components.Share{\n                                        components.Share{\n                                            NumDaysAgo: 582012,\n                                            Sharer: &components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                        Suggestions: []components.QuerySuggestion{\n                                                            components.QuerySuggestion{\n                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                            },\n                                                        },\n                                                    },\n                                                    InviteInfo: &components.InviteInfo{\n                                                        Invites: []components.ChannelInviteInfo{\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                },\n                                Verification: &components.Verification{\n                                    State: components.StateDeprecated,\n                                    Metadata: &components.VerificationMetadata{\n                                        LastVerifier: &components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                            Metadata: &components.PersonMetadata{\n                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                DatasourceProfile: []components.DatasourceProfile{\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                },\n                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                    Suggestions: []components.QuerySuggestion{\n                                                        components.QuerySuggestion{\n                                                            Query: \"app:github type:pull author:mortimer\",\n                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                        },\n                                                    },\n                                                },\n                                                InviteInfo: &components.InviteInfo{\n                                                    Invites: []components.ChannelInviteInfo{\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                    },\n                                                },\n                                                Badges: []components.Badge{\n                                                    components.Badge{\n                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                        IconConfig: &components.IconConfig{\n                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        Reminders: []components.Reminder{\n                                            components.Reminder{\n                                                Assignee: components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                Requestor: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                RemindAt: 785622,\n                                            },\n                                            components.Reminder{\n                                                Assignee: components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                Requestor: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                RemindAt: 785622,\n                                            },\n                                            components.Reminder{\n                                                Assignee: components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                Requestor: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                RemindAt: 785622,\n                                            },\n                                        },\n                                        LastReminder: &components.Reminder{\n                                            Assignee: components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                        Suggestions: []components.QuerySuggestion{\n                                                            components.QuerySuggestion{\n                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                            },\n                                                        },\n                                                    },\n                                                    InviteInfo: &components.InviteInfo{\n                                                        Invites: []components.ChannelInviteInfo{\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            Requestor: &components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                        Suggestions: []components.QuerySuggestion{\n                                                            components.QuerySuggestion{\n                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                            },\n                                                        },\n                                                    },\n                                                    InviteInfo: &components.InviteInfo{\n                                                        Invites: []components.ChannelInviteInfo{\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            RemindAt: 269943,\n                                        },\n                                        CandidateVerifiers: []components.Person{\n                                            components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                            },\n                                        },\n                                    },\n                                },\n                                Shortcuts: []components.Shortcut{\n                                    components.Shortcut{\n                                        InputAlias: \"<value>\",\n                                        CreatedBy: &components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                            Metadata: &components.PersonMetadata{\n                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                DatasourceProfile: []components.DatasourceProfile{\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                },\n                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                    Suggestions: []components.QuerySuggestion{\n                                                        components.QuerySuggestion{\n                                                            Query: \"app:github type:pull author:mortimer\",\n                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                        },\n                                                    },\n                                                },\n                                                InviteInfo: &components.InviteInfo{\n                                                    Invites: []components.ChannelInviteInfo{\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                    },\n                                                },\n                                                Badges: []components.Badge{\n                                                    components.Badge{\n                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                        IconConfig: &components.IconConfig{\n                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        UpdatedBy: &components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                            Metadata: &components.PersonMetadata{\n                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                DatasourceProfile: []components.DatasourceProfile{\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                },\n                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                    Suggestions: []components.QuerySuggestion{\n                                                        components.QuerySuggestion{\n                                                            Query: \"app:github type:pull author:mortimer\",\n                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                        },\n                                                    },\n                                                },\n                                                InviteInfo: &components.InviteInfo{\n                                                    Invites: []components.ChannelInviteInfo{\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                    },\n                                                },\n                                                Badges: []components.Badge{\n                                                    components.Badge{\n                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                        IconConfig: &components.IconConfig{\n                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                },\n                                CustomData: map[string]components.CustomDataValue{\n                                    \"someCustomField\": components.CustomDataValue{},\n                                },\n                                ContactPerson: &components.Person{\n                                    Name: \"George Clooney\",\n                                    ObfuscatedID: \"abc123\",\n                                    Metadata: &components.PersonMetadata{\n                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                        DatasourceProfile: []components.DatasourceProfile{\n                                            components.DatasourceProfile{\n                                                Datasource: \"github\",\n                                                Handle: \"<value>\",\n                                            },\n                                            components.DatasourceProfile{\n                                                Datasource: \"github\",\n                                                Handle: \"<value>\",\n                                            },\n                                        },\n                                        QuerySuggestions: &components.QuerySuggestionList{\n                                            Suggestions: []components.QuerySuggestion{\n                                                components.QuerySuggestion{\n                                                    Query: \"app:github type:pull author:mortimer\",\n                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                },\n                                            },\n                                        },\n                                        InviteInfo: &components.InviteInfo{\n                                            Invites: []components.ChannelInviteInfo{\n                                                components.ChannelInviteInfo{},\n                                                components.ChannelInviteInfo{},\n                                                components.ChannelInviteInfo{},\n                                            },\n                                        },\n                                        Badges: []components.Badge{\n                                            components.Badge{\n                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                IconConfig: &components.IconConfig{\n                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                },\n                                            },\n                                        },\n                                    },\n                                },\n                            },\n                        },\n                        Person: &components.Person{\n                            Name: \"George Clooney\",\n                            ObfuscatedID: \"abc123\",\n                            Metadata: &components.PersonMetadata{\n                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                Title: apiclientgo.Pointer(\"Actor\"),\n                                Department: apiclientgo.Pointer(\"Movies\"),\n                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                DatasourceProfile: []components.DatasourceProfile{\n                                    components.DatasourceProfile{\n                                        Datasource: \"github\",\n                                        Handle: \"<value>\",\n                                    },\n                                },\n                                QuerySuggestions: &components.QuerySuggestionList{\n                                    Suggestions: []components.QuerySuggestion{\n                                        components.QuerySuggestion{\n                                            Query: \"app:github type:pull author:mortimer\",\n                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                        },\n                                    },\n                                },\n                                InviteInfo: &components.InviteInfo{\n                                    Invites: []components.ChannelInviteInfo{\n                                        components.ChannelInviteInfo{},\n                                        components.ChannelInviteInfo{},\n                                        components.ChannelInviteInfo{},\n                                    },\n                                },\n                                Badges: []components.Badge{\n                                    components.Badge{\n                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                        IconConfig: &components.IconConfig{\n                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                            Name: apiclientgo.Pointer(\"user\"),\n                                        },\n                                    },\n                                },\n                            },\n                        },\n                        Customer: &components.Customer{\n                            ID: \"<id>\",\n                            Company: components.Company{\n                                Name: \"<value>\",\n                                Location: apiclientgo.Pointer(\"New York City\"),\n                                Industry: apiclientgo.Pointer(\"Finances\"),\n                                About: apiclientgo.Pointer(\"Financial, software, data, and media company headquartered in Midtown Manhattan, New York City\"),\n                            },\n                            Poc: []components.Person{\n                                components.Person{\n                                    Name: \"George Clooney\",\n                                    ObfuscatedID: \"abc123\",\n                                },\n                            },\n                            Notes: apiclientgo.Pointer(\"CIO is interested in trying out the product.\"),\n                        },\n                        Team: &components.Team{\n                            ID: \"<id>\",\n                            Name: \"<value>\",\n                            Members: []components.PersonToTeamRelationship{\n                                components.PersonToTeamRelationship{\n                                    Person: components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                Suggestions: []components.QuerySuggestion{\n                                                    components.QuerySuggestion{\n                                                        Query: \"app:github type:pull author:mortimer\",\n                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                    },\n                                                },\n                                            },\n                                            InviteInfo: &components.InviteInfo{\n                                                Invites: []components.ChannelInviteInfo{\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                },\n                                components.PersonToTeamRelationship{\n                                    Person: components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                Suggestions: []components.QuerySuggestion{\n                                                    components.QuerySuggestion{\n                                                        Query: \"app:github type:pull author:mortimer\",\n                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                    },\n                                                },\n                                            },\n                                            InviteInfo: &components.InviteInfo{\n                                                Invites: []components.ChannelInviteInfo{\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                },\n                                components.PersonToTeamRelationship{\n                                    Person: components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                Suggestions: []components.QuerySuggestion{\n                                                    components.QuerySuggestion{\n                                                        Query: \"app:github type:pull author:mortimer\",\n                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                    },\n                                                },\n                                            },\n                                            InviteInfo: &components.InviteInfo{\n                                                Invites: []components.ChannelInviteInfo{\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                },\n                            },\n                            DatasourceProfiles: []components.DatasourceProfile{\n                                components.DatasourceProfile{\n                                    Datasource: \"github\",\n                                    Handle: \"<value>\",\n                                },\n                            },\n                        },\n                        Answer: &components.Answer{\n                            ID: 3,\n                            DocID: apiclientgo.Pointer(\"ANSWERS_answer_3\"),\n                            Question: apiclientgo.Pointer(\"Why is the sky blue?\"),\n                            BodyText: apiclientgo.Pointer(\"From https://en.wikipedia.org/wiki/Diffuse_sky_radiation, the sky is blue because blue light is more strongly scattered than longer-wavelength light.\"),\n                            AudienceFilters: []components.FacetFilter{\n                                components.FacetFilter{\n                                    FieldName: apiclientgo.Pointer(\"type\"),\n                                    Values: []components.FacetFilterValue{\n                                        components.FacetFilterValue{\n                                            Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                            RelationType: components.RelationTypeEquals.ToPointer(),\n                                        },\n                                        components.FacetFilterValue{\n                                            Value: apiclientgo.Pointer(\"Presentation\"),\n                                            RelationType: components.RelationTypeEquals.ToPointer(),\n                                        },\n                                    },\n                                },\n                            },\n                            Likes: &components.AnswerLikes{\n                                LikedBy: []components.AnswerLike{\n                                    components.AnswerLike{\n                                        User: &components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                            Metadata: &components.PersonMetadata{\n                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                DatasourceProfile: []components.DatasourceProfile{\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                },\n                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                    Suggestions: []components.QuerySuggestion{\n                                                        components.QuerySuggestion{\n                                                            Query: \"app:github type:pull author:mortimer\",\n                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                        },\n                                                    },\n                                                },\n                                                InviteInfo: &components.InviteInfo{\n                                                    Invites: []components.ChannelInviteInfo{\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                    },\n                                                },\n                                                Badges: []components.Badge{\n                                                    components.Badge{\n                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                        IconConfig: &components.IconConfig{\n                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    components.AnswerLike{\n                                        User: &components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                            Metadata: &components.PersonMetadata{\n                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                DatasourceProfile: []components.DatasourceProfile{\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                },\n                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                    Suggestions: []components.QuerySuggestion{\n                                                        components.QuerySuggestion{\n                                                            Query: \"app:github type:pull author:mortimer\",\n                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                        },\n                                                    },\n                                                },\n                                                InviteInfo: &components.InviteInfo{\n                                                    Invites: []components.ChannelInviteInfo{\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                    },\n                                                },\n                                                Badges: []components.Badge{\n                                                    components.Badge{\n                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                        IconConfig: &components.IconConfig{\n                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                },\n                                LikedByUser: false,\n                                NumLikes: 572532,\n                            },\n                            Author: &components.Person{\n                                Name: \"George Clooney\",\n                                ObfuscatedID: \"abc123\",\n                                Metadata: &components.PersonMetadata{\n                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                    DatasourceProfile: []components.DatasourceProfile{\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                    },\n                                    QuerySuggestions: &components.QuerySuggestionList{\n                                        Suggestions: []components.QuerySuggestion{\n                                            components.QuerySuggestion{\n                                                Query: \"app:github type:pull author:mortimer\",\n                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                            },\n                                        },\n                                    },\n                                    InviteInfo: &components.InviteInfo{\n                                        Invites: []components.ChannelInviteInfo{\n                                            components.ChannelInviteInfo{},\n                                            components.ChannelInviteInfo{},\n                                            components.ChannelInviteInfo{},\n                                        },\n                                    },\n                                    Badges: []components.Badge{\n                                        components.Badge{\n                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                            IconConfig: &components.IconConfig{\n                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                Name: apiclientgo.Pointer(\"user\"),\n                                            },\n                                        },\n                                    },\n                                },\n                            },\n                            UpdatedBy: &components.Person{\n                                Name: \"George Clooney\",\n                                ObfuscatedID: \"abc123\",\n                                Metadata: &components.PersonMetadata{\n                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                    DatasourceProfile: []components.DatasourceProfile{\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                    },\n                                    QuerySuggestions: &components.QuerySuggestionList{\n                                        Suggestions: []components.QuerySuggestion{\n                                            components.QuerySuggestion{\n                                                Query: \"app:github type:pull author:mortimer\",\n                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                            },\n                                        },\n                                    },\n                                    InviteInfo: &components.InviteInfo{\n                                        Invites: []components.ChannelInviteInfo{\n                                            components.ChannelInviteInfo{},\n                                            components.ChannelInviteInfo{},\n                                            components.ChannelInviteInfo{},\n                                        },\n                                    },\n                                    Badges: []components.Badge{\n                                        components.Badge{\n                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                            IconConfig: &components.IconConfig{\n                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                Name: apiclientgo.Pointer(\"user\"),\n                                            },\n                                        },\n                                    },\n                                },\n                            },\n                            Verification: &components.Verification{\n                                State: components.StateDeprecated,\n                                Metadata: &components.VerificationMetadata{\n                                    LastVerifier: &components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                Suggestions: []components.QuerySuggestion{\n                                                    components.QuerySuggestion{\n                                                        Query: \"app:github type:pull author:mortimer\",\n                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                    },\n                                                },\n                                            },\n                                            InviteInfo: &components.InviteInfo{\n                                                Invites: []components.ChannelInviteInfo{\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    Document: &components.Document{\n                                        Metadata: &components.DocumentMetadata{\n                                            Datasource: apiclientgo.Pointer(\"datasource\"),\n                                            ObjectType: apiclientgo.Pointer(\"Feature Request\"),\n                                            Container: apiclientgo.Pointer(\"container\"),\n                                            ParentID: apiclientgo.Pointer(\"JIRA_EN-1337\"),\n                                            MimeType: apiclientgo.Pointer(\"mimeType\"),\n                                            DocumentID: apiclientgo.Pointer(\"documentId\"),\n                                            CreateTime: types.MustNewTimeFromString(\"2000-01-23T04:56:07.000Z\"),\n                                            UpdateTime: types.MustNewTimeFromString(\"2000-01-23T04:56:07.000Z\"),\n                                            Author: &components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            Owner: &components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            Components: []string{\n                                                \"Backend\",\n                                                \"Networking\",\n                                            },\n                                            Status: apiclientgo.Pointer(\"[\\\"Done\\\"]\"),\n                                            AssignedTo: &components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            UpdatedBy: &components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            CustomData: map[string]components.CustomDataValue{\n                                                \"someCustomField\": components.CustomDataValue{},\n                                            },\n                                            ContactPerson: &components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    Reminders: []components.Reminder{\n                                        components.Reminder{\n                                            Assignee: components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                        Suggestions: []components.QuerySuggestion{\n                                                            components.QuerySuggestion{\n                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                            },\n                                                        },\n                                                    },\n                                                    InviteInfo: &components.InviteInfo{\n                                                        Invites: []components.ChannelInviteInfo{\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            Requestor: &components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                        Suggestions: []components.QuerySuggestion{\n                                                            components.QuerySuggestion{\n                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                            },\n                                                        },\n                                                    },\n                                                    InviteInfo: &components.InviteInfo{\n                                                        Invites: []components.ChannelInviteInfo{\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            RemindAt: 785622,\n                                        },\n                                        components.Reminder{\n                                            Assignee: components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                        Suggestions: []components.QuerySuggestion{\n                                                            components.QuerySuggestion{\n                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                            },\n                                                        },\n                                                    },\n                                                    InviteInfo: &components.InviteInfo{\n                                                        Invites: []components.ChannelInviteInfo{\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            Requestor: &components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                        Suggestions: []components.QuerySuggestion{\n                                                            components.QuerySuggestion{\n                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                            },\n                                                        },\n                                                    },\n                                                    InviteInfo: &components.InviteInfo{\n                                                        Invites: []components.ChannelInviteInfo{\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            RemindAt: 785622,\n                                        },\n                                        components.Reminder{\n                                            Assignee: components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                        Suggestions: []components.QuerySuggestion{\n                                                            components.QuerySuggestion{\n                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                            },\n                                                        },\n                                                    },\n                                                    InviteInfo: &components.InviteInfo{\n                                                        Invites: []components.ChannelInviteInfo{\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            Requestor: &components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                        Suggestions: []components.QuerySuggestion{\n                                                            components.QuerySuggestion{\n                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                            },\n                                                        },\n                                                    },\n                                                    InviteInfo: &components.InviteInfo{\n                                                        Invites: []components.ChannelInviteInfo{\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            RemindAt: 785622,\n                                        },\n                                    },\n                                    LastReminder: &components.Reminder{\n                                        Assignee: components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                            Metadata: &components.PersonMetadata{\n                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                DatasourceProfile: []components.DatasourceProfile{\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                },\n                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                    Suggestions: []components.QuerySuggestion{\n                                                        components.QuerySuggestion{\n                                                            Query: \"app:github type:pull author:mortimer\",\n                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                        },\n                                                    },\n                                                },\n                                                InviteInfo: &components.InviteInfo{\n                                                    Invites: []components.ChannelInviteInfo{\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                    },\n                                                },\n                                                Badges: []components.Badge{\n                                                    components.Badge{\n                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                        IconConfig: &components.IconConfig{\n                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        Requestor: &components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                            Metadata: &components.PersonMetadata{\n                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                DatasourceProfile: []components.DatasourceProfile{\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                },\n                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                    Suggestions: []components.QuerySuggestion{\n                                                        components.QuerySuggestion{\n                                                            Query: \"app:github type:pull author:mortimer\",\n                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                        },\n                                                    },\n                                                },\n                                                InviteInfo: &components.InviteInfo{\n                                                    Invites: []components.ChannelInviteInfo{\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                    },\n                                                },\n                                                Badges: []components.Badge{\n                                                    components.Badge{\n                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                        IconConfig: &components.IconConfig{\n                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        RemindAt: 269943,\n                                    },\n                                    CandidateVerifiers: []components.Person{\n                                        components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                        },\n                                    },\n                                },\n                            },\n                            SourceDocument: &components.Document{\n                                Metadata: &components.DocumentMetadata{\n                                    Datasource: apiclientgo.Pointer(\"datasource\"),\n                                    ObjectType: apiclientgo.Pointer(\"Feature Request\"),\n                                    Container: apiclientgo.Pointer(\"container\"),\n                                    ParentID: apiclientgo.Pointer(\"JIRA_EN-1337\"),\n                                    MimeType: apiclientgo.Pointer(\"mimeType\"),\n                                    DocumentID: apiclientgo.Pointer(\"documentId\"),\n                                    CreateTime: types.MustNewTimeFromString(\"2000-01-23T04:56:07.000Z\"),\n                                    UpdateTime: types.MustNewTimeFromString(\"2000-01-23T04:56:07.000Z\"),\n                                    Author: &components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                Suggestions: []components.QuerySuggestion{\n                                                    components.QuerySuggestion{\n                                                        Query: \"app:github type:pull author:mortimer\",\n                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                    },\n                                                },\n                                            },\n                                            InviteInfo: &components.InviteInfo{\n                                                Invites: []components.ChannelInviteInfo{\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    Owner: &components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                Suggestions: []components.QuerySuggestion{\n                                                    components.QuerySuggestion{\n                                                        Query: \"app:github type:pull author:mortimer\",\n                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                    },\n                                                },\n                                            },\n                                            InviteInfo: &components.InviteInfo{\n                                                Invites: []components.ChannelInviteInfo{\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    Components: []string{\n                                        \"Backend\",\n                                        \"Networking\",\n                                    },\n                                    Status: apiclientgo.Pointer(\"[\\\"Done\\\"]\"),\n                                    AssignedTo: &components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                Suggestions: []components.QuerySuggestion{\n                                                    components.QuerySuggestion{\n                                                        Query: \"app:github type:pull author:mortimer\",\n                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                    },\n                                                },\n                                            },\n                                            InviteInfo: &components.InviteInfo{\n                                                Invites: []components.ChannelInviteInfo{\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    UpdatedBy: &components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                Suggestions: []components.QuerySuggestion{\n                                                    components.QuerySuggestion{\n                                                        Query: \"app:github type:pull author:mortimer\",\n                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                    },\n                                                },\n                                            },\n                                            InviteInfo: &components.InviteInfo{\n                                                Invites: []components.ChannelInviteInfo{\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    Interactions: &components.DocumentInteractions{\n                                        Reacts: []components.Reaction{\n                                            components.Reaction{\n                                                Reactors: []components.Person{\n                                                    components.Person{\n                                                        Name: \"George Clooney\",\n                                                        ObfuscatedID: \"abc123\",\n                                                    },\n                                                },\n                                            },\n                                            components.Reaction{\n                                                Reactors: []components.Person{\n                                                    components.Person{\n                                                        Name: \"George Clooney\",\n                                                        ObfuscatedID: \"abc123\",\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        Shares: []components.Share{\n                                            components.Share{\n                                                NumDaysAgo: 582012,\n                                                Sharer: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    Verification: &components.Verification{\n                                        State: components.StateDeprecated,\n                                        Metadata: &components.VerificationMetadata{\n                                            LastVerifier: &components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                        Suggestions: []components.QuerySuggestion{\n                                                            components.QuerySuggestion{\n                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                            },\n                                                        },\n                                                    },\n                                                    InviteInfo: &components.InviteInfo{\n                                                        Invites: []components.ChannelInviteInfo{\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                            components.ChannelInviteInfo{},\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            Reminders: []components.Reminder{\n                                                components.Reminder{\n                                                    Assignee: components.Person{\n                                                        Name: \"George Clooney\",\n                                                        ObfuscatedID: \"abc123\",\n                                                        Metadata: &components.PersonMetadata{\n                                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                            DatasourceProfile: []components.DatasourceProfile{\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                            },\n                                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                                Suggestions: []components.QuerySuggestion{\n                                                                    components.QuerySuggestion{\n                                                                        Query: \"app:github type:pull author:mortimer\",\n                                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                            InviteInfo: &components.InviteInfo{\n                                                                Invites: []components.ChannelInviteInfo{\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                },\n                                                            },\n                                                            Badges: []components.Badge{\n                                                                components.Badge{\n                                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                    IconConfig: &components.IconConfig{\n                                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    Requestor: &components.Person{\n                                                        Name: \"George Clooney\",\n                                                        ObfuscatedID: \"abc123\",\n                                                        Metadata: &components.PersonMetadata{\n                                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                            DatasourceProfile: []components.DatasourceProfile{\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                            },\n                                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                                Suggestions: []components.QuerySuggestion{\n                                                                    components.QuerySuggestion{\n                                                                        Query: \"app:github type:pull author:mortimer\",\n                                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                            InviteInfo: &components.InviteInfo{\n                                                                Invites: []components.ChannelInviteInfo{\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                },\n                                                            },\n                                                            Badges: []components.Badge{\n                                                                components.Badge{\n                                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                    IconConfig: &components.IconConfig{\n                                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    RemindAt: 785622,\n                                                },\n                                                components.Reminder{\n                                                    Assignee: components.Person{\n                                                        Name: \"George Clooney\",\n                                                        ObfuscatedID: \"abc123\",\n                                                        Metadata: &components.PersonMetadata{\n                                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                            DatasourceProfile: []components.DatasourceProfile{\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                            },\n                                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                                Suggestions: []components.QuerySuggestion{\n                                                                    components.QuerySuggestion{\n                                                                        Query: \"app:github type:pull author:mortimer\",\n                                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                            InviteInfo: &components.InviteInfo{\n                                                                Invites: []components.ChannelInviteInfo{\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                },\n                                                            },\n                                                            Badges: []components.Badge{\n                                                                components.Badge{\n                                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                    IconConfig: &components.IconConfig{\n                                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    Requestor: &components.Person{\n                                                        Name: \"George Clooney\",\n                                                        ObfuscatedID: \"abc123\",\n                                                        Metadata: &components.PersonMetadata{\n                                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                            DatasourceProfile: []components.DatasourceProfile{\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                            },\n                                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                                Suggestions: []components.QuerySuggestion{\n                                                                    components.QuerySuggestion{\n                                                                        Query: \"app:github type:pull author:mortimer\",\n                                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                            InviteInfo: &components.InviteInfo{\n                                                                Invites: []components.ChannelInviteInfo{\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                },\n                                                            },\n                                                            Badges: []components.Badge{\n                                                                components.Badge{\n                                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                    IconConfig: &components.IconConfig{\n                                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    RemindAt: 785622,\n                                                },\n                                                components.Reminder{\n                                                    Assignee: components.Person{\n                                                        Name: \"George Clooney\",\n                                                        ObfuscatedID: \"abc123\",\n                                                        Metadata: &components.PersonMetadata{\n                                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                            DatasourceProfile: []components.DatasourceProfile{\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                            },\n                                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                                Suggestions: []components.QuerySuggestion{\n                                                                    components.QuerySuggestion{\n                                                                        Query: \"app:github type:pull author:mortimer\",\n                                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                            InviteInfo: &components.InviteInfo{\n                                                                Invites: []components.ChannelInviteInfo{\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                },\n                                                            },\n                                                            Badges: []components.Badge{\n                                                                components.Badge{\n                                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                    IconConfig: &components.IconConfig{\n                                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    Requestor: &components.Person{\n                                                        Name: \"George Clooney\",\n                                                        ObfuscatedID: \"abc123\",\n                                                        Metadata: &components.PersonMetadata{\n                                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                            DatasourceProfile: []components.DatasourceProfile{\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                            },\n                                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                                Suggestions: []components.QuerySuggestion{\n                                                                    components.QuerySuggestion{\n                                                                        Query: \"app:github type:pull author:mortimer\",\n                                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                            InviteInfo: &components.InviteInfo{\n                                                                Invites: []components.ChannelInviteInfo{\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                },\n                                                            },\n                                                            Badges: []components.Badge{\n                                                                components.Badge{\n                                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                    IconConfig: &components.IconConfig{\n                                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    RemindAt: 785622,\n                                                },\n                                            },\n                                            LastReminder: &components.Reminder{\n                                                Assignee: components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                Requestor: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                RemindAt: 269943,\n                                            },\n                                            CandidateVerifiers: []components.Person{\n                                                components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                },\n                                            },\n                                        },\n                                    },\n                                    CustomData: map[string]components.CustomDataValue{\n                                        \"someCustomField\": components.CustomDataValue{},\n                                    },\n                                    ContactPerson: &components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                Suggestions: []components.QuerySuggestion{\n                                                    components.QuerySuggestion{\n                                                        Query: \"app:github type:pull author:mortimer\",\n                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                    },\n                                                },\n                                            },\n                                            InviteInfo: &components.InviteInfo{\n                                                Invites: []components.ChannelInviteInfo{\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                },\n                            },\n                        },\n                        ExtractedQnA: &components.ExtractedQnA{\n                            QuestionResult: &components.SearchResult{\n                                Document: &components.Document{\n                                    Metadata: &components.DocumentMetadata{\n                                        Datasource: apiclientgo.Pointer(\"datasource\"),\n                                        ObjectType: apiclientgo.Pointer(\"Feature Request\"),\n                                        Container: apiclientgo.Pointer(\"container\"),\n                                        ParentID: apiclientgo.Pointer(\"JIRA_EN-1337\"),\n                                        MimeType: apiclientgo.Pointer(\"mimeType\"),\n                                        DocumentID: apiclientgo.Pointer(\"documentId\"),\n                                        CreateTime: types.MustNewTimeFromString(\"2000-01-23T04:56:07.000Z\"),\n                                        UpdateTime: types.MustNewTimeFromString(\"2000-01-23T04:56:07.000Z\"),\n                                        Author: &components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                            RelatedDocuments: []components.RelatedDocuments{\n                                                components.RelatedDocuments{\n                                                    QuerySuggestion: &components.QuerySuggestion{\n                                                        Query: \"app:github type:pull author:mortimer\",\n                                                        SearchProviderInfo: &components.SearchProviderInfo{\n                                                            Name: apiclientgo.Pointer(\"Google\"),\n                                                            SearchLinkURLTemplate: apiclientgo.Pointer(\"https://www.google.com/search?q={query}&hl=en\"),\n                                                        },\n                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                        RequestOptions: &components.SearchRequestOptions{\n                                                            DatasourceFilter: apiclientgo.Pointer(\"JIRA\"),\n                                                            DatasourcesFilter: []string{\n                                                                \"JIRA\",\n                                                            },\n                                                            QueryOverridesFacetFilters: apiclientgo.Pointer(true),\n                                                            FacetFilters: []components.FacetFilter{\n                                                                components.FacetFilter{\n                                                                    FieldName: apiclientgo.Pointer(\"type\"),\n                                                                    Values: []components.FacetFilterValue{\n                                                                        components.FacetFilterValue{\n                                                                            Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                            RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                        },\n                                                                        components.FacetFilterValue{\n                                                                            Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                            RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                            FacetFilterSets: []components.FacetFilterSet{\n                                                                components.FacetFilterSet{\n                                                                    Filters: []components.FacetFilter{\n                                                                        components.FacetFilter{\n                                                                            FieldName: apiclientgo.Pointer(\"type\"),\n                                                                            Values: []components.FacetFilterValue{\n                                                                                components.FacetFilterValue{\n                                                                                    Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                                    RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                                },\n                                                                                components.FacetFilterValue{\n                                                                                    Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                                    RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                                },\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                },\n                                                                components.FacetFilterSet{\n                                                                    Filters: []components.FacetFilter{\n                                                                        components.FacetFilter{\n                                                                            FieldName: apiclientgo.Pointer(\"type\"),\n                                                                            Values: []components.FacetFilterValue{\n                                                                                components.FacetFilterValue{\n                                                                                    Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                                    RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                                },\n                                                                                components.FacetFilterValue{\n                                                                                    Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                                    RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                                },\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                            FacetBucketSize: 843281,\n                                                            AuthTokens: []components.AuthToken{\n                                                                components.AuthToken{\n                                                                    AccessToken: \"123abc\",\n                                                                    Datasource: \"gmail\",\n                                                                    Scope: apiclientgo.Pointer(\"email profile https://www.googleapis.com/auth/gmail.readonly\"),\n                                                                    TokenType: apiclientgo.Pointer(\"Bearer\"),\n                                                                    AuthUser: apiclientgo.Pointer(\"1\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        Ranges: []components.TextRange{\n                                                            components.TextRange{\n                                                                StartIndex: 925801,\n                                                            },\n                                                            components.TextRange{\n                                                                StartIndex: 925801,\n                                                            },\n                                                            components.TextRange{\n                                                                StartIndex: 925801,\n                                                            },\n                                                        },\n                                                        InputDetails: &components.SearchRequestInputDetails{\n                                                            HasCopyPaste: apiclientgo.Pointer(true),\n                                                        },\n                                                    },\n                                                },\n                                                components.RelatedDocuments{\n                                                    QuerySuggestion: &components.QuerySuggestion{\n                                                        Query: \"app:github type:pull author:mortimer\",\n                                                        SearchProviderInfo: &components.SearchProviderInfo{\n                                                            Name: apiclientgo.Pointer(\"Google\"),\n                                                            SearchLinkURLTemplate: apiclientgo.Pointer(\"https://www.google.com/search?q={query}&hl=en\"),\n                                                        },\n                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                        RequestOptions: &components.SearchRequestOptions{\n                                                            DatasourceFilter: apiclientgo.Pointer(\"JIRA\"),\n                                                            DatasourcesFilter: []string{\n                                                                \"JIRA\",\n                                                            },\n                                                            QueryOverridesFacetFilters: apiclientgo.Pointer(true),\n                                                            FacetFilters: []components.FacetFilter{\n                                                                components.FacetFilter{\n                                                                    FieldName: apiclientgo.Pointer(\"type\"),\n                                                                    Values: []components.FacetFilterValue{\n                                                                        components.FacetFilterValue{\n                                                                            Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                            RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                        },\n                                                                        components.FacetFilterValue{\n                                                                            Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                            RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                            FacetFilterSets: []components.FacetFilterSet{\n                                                                components.FacetFilterSet{\n                                                                    Filters: []components.FacetFilter{\n                                                                        components.FacetFilter{\n                                                                            FieldName: apiclientgo.Pointer(\"type\"),\n                                                                            Values: []components.FacetFilterValue{\n                                                                                components.FacetFilterValue{\n                                                                                    Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                                    RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                                },\n                                                                                components.FacetFilterValue{\n                                                                                    Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                                    RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                                },\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                },\n                                                                components.FacetFilterSet{\n                                                                    Filters: []components.FacetFilter{\n                                                                        components.FacetFilter{\n                                                                            FieldName: apiclientgo.Pointer(\"type\"),\n                                                                            Values: []components.FacetFilterValue{\n                                                                                components.FacetFilterValue{\n                                                                                    Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                                    RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                                },\n                                                                                components.FacetFilterValue{\n                                                                                    Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                                    RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                                },\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                            FacetBucketSize: 843281,\n                                                            AuthTokens: []components.AuthToken{\n                                                                components.AuthToken{\n                                                                    AccessToken: \"123abc\",\n                                                                    Datasource: \"gmail\",\n                                                                    Scope: apiclientgo.Pointer(\"email profile https://www.googleapis.com/auth/gmail.readonly\"),\n                                                                    TokenType: apiclientgo.Pointer(\"Bearer\"),\n                                                                    AuthUser: apiclientgo.Pointer(\"1\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        Ranges: []components.TextRange{\n                                                            components.TextRange{\n                                                                StartIndex: 925801,\n                                                            },\n                                                            components.TextRange{\n                                                                StartIndex: 925801,\n                                                            },\n                                                            components.TextRange{\n                                                                StartIndex: 925801,\n                                                            },\n                                                        },\n                                                        InputDetails: &components.SearchRequestInputDetails{\n                                                            HasCopyPaste: apiclientgo.Pointer(true),\n                                                        },\n                                                    },\n                                                },\n                                                components.RelatedDocuments{\n                                                    QuerySuggestion: &components.QuerySuggestion{\n                                                        Query: \"app:github type:pull author:mortimer\",\n                                                        SearchProviderInfo: &components.SearchProviderInfo{\n                                                            Name: apiclientgo.Pointer(\"Google\"),\n                                                            SearchLinkURLTemplate: apiclientgo.Pointer(\"https://www.google.com/search?q={query}&hl=en\"),\n                                                        },\n                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                        RequestOptions: &components.SearchRequestOptions{\n                                                            DatasourceFilter: apiclientgo.Pointer(\"JIRA\"),\n                                                            DatasourcesFilter: []string{\n                                                                \"JIRA\",\n                                                            },\n                                                            QueryOverridesFacetFilters: apiclientgo.Pointer(true),\n                                                            FacetFilters: []components.FacetFilter{\n                                                                components.FacetFilter{\n                                                                    FieldName: apiclientgo.Pointer(\"type\"),\n                                                                    Values: []components.FacetFilterValue{\n                                                                        components.FacetFilterValue{\n                                                                            Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                            RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                        },\n                                                                        components.FacetFilterValue{\n                                                                            Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                            RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                            FacetFilterSets: []components.FacetFilterSet{\n                                                                components.FacetFilterSet{\n                                                                    Filters: []components.FacetFilter{\n                                                                        components.FacetFilter{\n                                                                            FieldName: apiclientgo.Pointer(\"type\"),\n                                                                            Values: []components.FacetFilterValue{\n                                                                                components.FacetFilterValue{\n                                                                                    Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                                    RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                                },\n                                                                                components.FacetFilterValue{\n                                                                                    Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                                    RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                                },\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                },\n                                                                components.FacetFilterSet{\n                                                                    Filters: []components.FacetFilter{\n                                                                        components.FacetFilter{\n                                                                            FieldName: apiclientgo.Pointer(\"type\"),\n                                                                            Values: []components.FacetFilterValue{\n                                                                                components.FacetFilterValue{\n                                                                                    Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                                    RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                                },\n                                                                                components.FacetFilterValue{\n                                                                                    Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                                    RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                                },\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                            FacetBucketSize: 843281,\n                                                            AuthTokens: []components.AuthToken{\n                                                                components.AuthToken{\n                                                                    AccessToken: \"123abc\",\n                                                                    Datasource: \"gmail\",\n                                                                    Scope: apiclientgo.Pointer(\"email profile https://www.googleapis.com/auth/gmail.readonly\"),\n                                                                    TokenType: apiclientgo.Pointer(\"Bearer\"),\n                                                                    AuthUser: apiclientgo.Pointer(\"1\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        Ranges: []components.TextRange{\n                                                            components.TextRange{\n                                                                StartIndex: 925801,\n                                                            },\n                                                            components.TextRange{\n                                                                StartIndex: 925801,\n                                                            },\n                                                            components.TextRange{\n                                                                StartIndex: 925801,\n                                                            },\n                                                        },\n                                                        InputDetails: &components.SearchRequestInputDetails{\n                                                            HasCopyPaste: apiclientgo.Pointer(true),\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            Metadata: &components.PersonMetadata{\n                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                DatasourceProfile: []components.DatasourceProfile{\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                },\n                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                    Suggestions: []components.QuerySuggestion{\n                                                        components.QuerySuggestion{\n                                                            Query: \"app:github type:pull author:mortimer\",\n                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                        },\n                                                    },\n                                                },\n                                                InviteInfo: &components.InviteInfo{\n                                                    Invites: []components.ChannelInviteInfo{\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                    },\n                                                },\n                                                CustomFields: []components.CustomFieldData{\n                                                    components.CustomFieldData{\n                                                        Label: \"<value>\",\n                                                        Values: []components.CustomFieldValue{\n                                                            components.CreateCustomFieldValueCustomFieldValueStr(\n                                                                components.CustomFieldValueStr{},\n                                                            ),\n                                                            components.CreateCustomFieldValueCustomFieldValueStr(\n                                                                components.CustomFieldValueStr{},\n                                                            ),\n                                                        },\n                                                    },\n                                                    components.CustomFieldData{\n                                                        Label: \"<value>\",\n                                                        Values: []components.CustomFieldValue{\n                                                            components.CreateCustomFieldValueCustomFieldValueStr(\n                                                                components.CustomFieldValueStr{},\n                                                            ),\n                                                            components.CreateCustomFieldValueCustomFieldValueStr(\n                                                                components.CustomFieldValueStr{},\n                                                            ),\n                                                        },\n                                                    },\n                                                    components.CustomFieldData{\n                                                        Label: \"<value>\",\n                                                        Values: []components.CustomFieldValue{\n                                                            components.CreateCustomFieldValueCustomFieldValueStr(\n                                                                components.CustomFieldValueStr{},\n                                                            ),\n                                                            components.CreateCustomFieldValueCustomFieldValueStr(\n                                                                components.CustomFieldValueStr{},\n                                                            ),\n                                                        },\n                                                    },\n                                                },\n                                                Badges: []components.Badge{\n                                                    components.Badge{\n                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                        IconConfig: &components.IconConfig{\n                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        Owner: &components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                            Metadata: &components.PersonMetadata{\n                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                DatasourceProfile: []components.DatasourceProfile{\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                },\n                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                    Suggestions: []components.QuerySuggestion{\n                                                        components.QuerySuggestion{\n                                                            Query: \"app:github type:pull author:mortimer\",\n                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                        },\n                                                    },\n                                                },\n                                                InviteInfo: &components.InviteInfo{\n                                                    Invites: []components.ChannelInviteInfo{\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                    },\n                                                },\n                                                Badges: []components.Badge{\n                                                    components.Badge{\n                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                        IconConfig: &components.IconConfig{\n                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        MentionedPeople: []components.Person{\n                                            components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                            },\n                                        },\n                                        Components: []string{\n                                            \"Backend\",\n                                            \"Networking\",\n                                        },\n                                        Status: apiclientgo.Pointer(\"[\\\"Done\\\"]\"),\n                                        Pins: []components.PinDocument{\n                                            components.PinDocument{\n                                                AudienceFilters: []components.FacetFilter{\n                                                    components.FacetFilter{\n                                                        FieldName: apiclientgo.Pointer(\"type\"),\n                                                        Values: []components.FacetFilterValue{\n                                                            components.FacetFilterValue{\n                                                                Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                RelationType: components.RelationTypeEquals.ToPointer(),\n                                                            },\n                                                            components.FacetFilterValue{\n                                                                Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                RelationType: components.RelationTypeEquals.ToPointer(),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                DocumentID: \"<id>\",\n                                                Attribution: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                UpdatedBy: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            components.PinDocument{\n                                                AudienceFilters: []components.FacetFilter{\n                                                    components.FacetFilter{\n                                                        FieldName: apiclientgo.Pointer(\"type\"),\n                                                        Values: []components.FacetFilterValue{\n                                                            components.FacetFilterValue{\n                                                                Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                RelationType: components.RelationTypeEquals.ToPointer(),\n                                                            },\n                                                            components.FacetFilterValue{\n                                                                Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                RelationType: components.RelationTypeEquals.ToPointer(),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                DocumentID: \"<id>\",\n                                                Attribution: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                UpdatedBy: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        AssignedTo: &components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                            Metadata: &components.PersonMetadata{\n                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                DatasourceProfile: []components.DatasourceProfile{\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                },\n                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                    Suggestions: []components.QuerySuggestion{\n                                                        components.QuerySuggestion{\n                                                            Query: \"app:github type:pull author:mortimer\",\n                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                        },\n                                                    },\n                                                },\n                                                InviteInfo: &components.InviteInfo{\n                                                    Invites: []components.ChannelInviteInfo{\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                    },\n                                                },\n                                                Badges: []components.Badge{\n                                                    components.Badge{\n                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                        IconConfig: &components.IconConfig{\n                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        UpdatedBy: &components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                            Metadata: &components.PersonMetadata{\n                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                DatasourceProfile: []components.DatasourceProfile{\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                },\n                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                    Suggestions: []components.QuerySuggestion{\n                                                        components.QuerySuggestion{\n                                                            Query: \"app:github type:pull author:mortimer\",\n                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                        },\n                                                    },\n                                                },\n                                                InviteInfo: &components.InviteInfo{\n                                                    Invites: []components.ChannelInviteInfo{\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                    },\n                                                },\n                                                Badges: []components.Badge{\n                                                    components.Badge{\n                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                        IconConfig: &components.IconConfig{\n                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        Collections: []components.Collection{\n                                            components.Collection{\n                                                Name: \"<value>\",\n                                                Description: \"perfectly flustered dimly\",\n                                                AddedRoles: []components.UserRoleSpecification{\n                                                    components.UserRoleSpecification{\n                                                        Person: &components.Person{\n                                                            Name: \"George Clooney\",\n                                                            ObfuscatedID: \"abc123\",\n                                                            Metadata: &components.PersonMetadata{\n                                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                DatasourceProfile: []components.DatasourceProfile{\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                },\n                                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                                    Suggestions: []components.QuerySuggestion{\n                                                                        components.QuerySuggestion{\n                                                                            Query: \"app:github type:pull author:mortimer\",\n                                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                                InviteInfo: &components.InviteInfo{\n                                                                    Invites: []components.ChannelInviteInfo{\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                    },\n                                                                },\n                                                                Badges: []components.Badge{\n                                                                    components.Badge{\n                                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                        IconConfig: &components.IconConfig{\n                                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                        Role: components.UserRoleAnswerModerator,\n                                                    },\n                                                    components.UserRoleSpecification{\n                                                        Person: &components.Person{\n                                                            Name: \"George Clooney\",\n                                                            ObfuscatedID: \"abc123\",\n                                                            Metadata: &components.PersonMetadata{\n                                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                DatasourceProfile: []components.DatasourceProfile{\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                },\n                                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                                    Suggestions: []components.QuerySuggestion{\n                                                                        components.QuerySuggestion{\n                                                                            Query: \"app:github type:pull author:mortimer\",\n                                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                                InviteInfo: &components.InviteInfo{\n                                                                    Invites: []components.ChannelInviteInfo{\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                    },\n                                                                },\n                                                                Badges: []components.Badge{\n                                                                    components.Badge{\n                                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                        IconConfig: &components.IconConfig{\n                                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                        Role: components.UserRoleAnswerModerator,\n                                                    },\n                                                    components.UserRoleSpecification{\n                                                        Person: &components.Person{\n                                                            Name: \"George Clooney\",\n                                                            ObfuscatedID: \"abc123\",\n                                                            Metadata: &components.PersonMetadata{\n                                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                DatasourceProfile: []components.DatasourceProfile{\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                },\n                                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                                    Suggestions: []components.QuerySuggestion{\n                                                                        components.QuerySuggestion{\n                                                                            Query: \"app:github type:pull author:mortimer\",\n                                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                                InviteInfo: &components.InviteInfo{\n                                                                    Invites: []components.ChannelInviteInfo{\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                    },\n                                                                },\n                                                                Badges: []components.Badge{\n                                                                    components.Badge{\n                                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                        IconConfig: &components.IconConfig{\n                                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                        Role: components.UserRoleAnswerModerator,\n                                                    },\n                                                },\n                                                RemovedRoles: []components.UserRoleSpecification{\n                                                    components.UserRoleSpecification{\n                                                        Person: &components.Person{\n                                                            Name: \"George Clooney\",\n                                                            ObfuscatedID: \"abc123\",\n                                                            Metadata: &components.PersonMetadata{\n                                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                DatasourceProfile: []components.DatasourceProfile{\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                },\n                                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                                    Suggestions: []components.QuerySuggestion{\n                                                                        components.QuerySuggestion{\n                                                                            Query: \"app:github type:pull author:mortimer\",\n                                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                                InviteInfo: &components.InviteInfo{\n                                                                    Invites: []components.ChannelInviteInfo{\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                    },\n                                                                },\n                                                                Badges: []components.Badge{\n                                                                    components.Badge{\n                                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                        IconConfig: &components.IconConfig{\n                                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                        Role: components.UserRoleVerifier,\n                                                    },\n                                                },\n                                                AudienceFilters: []components.FacetFilter{\n                                                    components.FacetFilter{\n                                                        FieldName: apiclientgo.Pointer(\"type\"),\n                                                        Values: []components.FacetFilterValue{\n                                                            components.FacetFilterValue{\n                                                                Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                RelationType: components.RelationTypeEquals.ToPointer(),\n                                                            },\n                                                            components.FacetFilterValue{\n                                                                Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                RelationType: components.RelationTypeEquals.ToPointer(),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                ID: 83242,\n                                                Creator: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                UpdatedBy: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                Items: []components.CollectionItem{\n                                                    components.CollectionItem{\n                                                        CollectionID: 420359,\n                                                        CreatedBy: &components.Person{\n                                                            Name: \"George Clooney\",\n                                                            ObfuscatedID: \"abc123\",\n                                                            Metadata: &components.PersonMetadata{\n                                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                DatasourceProfile: []components.DatasourceProfile{\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                },\n                                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                                    Suggestions: []components.QuerySuggestion{\n                                                                        components.QuerySuggestion{\n                                                                            Query: \"app:github type:pull author:mortimer\",\n                                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                                InviteInfo: &components.InviteInfo{\n                                                                    Invites: []components.ChannelInviteInfo{\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                    },\n                                                                },\n                                                                Badges: []components.Badge{\n                                                                    components.Badge{\n                                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                        IconConfig: &components.IconConfig{\n                                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                        Shortcut: &components.Shortcut{\n                                                            InputAlias: \"<value>\",\n                                                            CreatedBy: &components.Person{\n                                                                Name: \"George Clooney\",\n                                                                ObfuscatedID: \"abc123\",\n                                                                Metadata: &components.PersonMetadata{\n                                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                                        components.DatasourceProfile{\n                                                                            Datasource: \"github\",\n                                                                            Handle: \"<value>\",\n                                                                        },\n                                                                        components.DatasourceProfile{\n                                                                            Datasource: \"github\",\n                                                                            Handle: \"<value>\",\n                                                                        },\n                                                                        components.DatasourceProfile{\n                                                                            Datasource: \"github\",\n                                                                            Handle: \"<value>\",\n                                                                        },\n                                                                    },\n                                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                                        Suggestions: []components.QuerySuggestion{\n                                                                            components.QuerySuggestion{\n                                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                    InviteInfo: &components.InviteInfo{\n                                                                        Invites: []components.ChannelInviteInfo{\n                                                                            components.ChannelInviteInfo{},\n                                                                            components.ChannelInviteInfo{},\n                                                                            components.ChannelInviteInfo{},\n                                                                        },\n                                                                    },\n                                                                    Badges: []components.Badge{\n                                                                        components.Badge{\n                                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                            IconConfig: &components.IconConfig{\n                                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                            UpdatedBy: &components.Person{\n                                                                Name: \"George Clooney\",\n                                                                ObfuscatedID: \"abc123\",\n                                                                Metadata: &components.PersonMetadata{\n                                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                                        components.DatasourceProfile{\n                                                                            Datasource: \"github\",\n                                                                            Handle: \"<value>\",\n                                                                        },\n                                                                        components.DatasourceProfile{\n                                                                            Datasource: \"github\",\n                                                                            Handle: \"<value>\",\n                                                                        },\n                                                                    },\n                                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                                        Suggestions: []components.QuerySuggestion{\n                                                                            components.QuerySuggestion{\n                                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                    InviteInfo: &components.InviteInfo{\n                                                                        Invites: []components.ChannelInviteInfo{\n                                                                            components.ChannelInviteInfo{},\n                                                                            components.ChannelInviteInfo{},\n                                                                            components.ChannelInviteInfo{},\n                                                                        },\n                                                                    },\n                                                                    Badges: []components.Badge{\n                                                                        components.Badge{\n                                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                            IconConfig: &components.IconConfig{\n                                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                            Roles: []components.UserRoleSpecification{\n                                                                components.UserRoleSpecification{\n                                                                    Person: &components.Person{\n                                                                        Name: \"George Clooney\",\n                                                                        ObfuscatedID: \"abc123\",\n                                                                        Metadata: &components.PersonMetadata{\n                                                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                            DatasourceProfile: []components.DatasourceProfile{\n                                                                                components.DatasourceProfile{\n                                                                                    Datasource: \"github\",\n                                                                                    Handle: \"<value>\",\n                                                                                },\n                                                                                components.DatasourceProfile{\n                                                                                    Datasource: \"github\",\n                                                                                    Handle: \"<value>\",\n                                                                                },\n                                                                            },\n                                                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                                                Suggestions: []components.QuerySuggestion{\n                                                                                    components.QuerySuggestion{\n                                                                                        Query: \"app:github type:pull author:mortimer\",\n                                                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                                                    },\n                                                                                },\n                                                                            },\n                                                                            InviteInfo: &components.InviteInfo{\n                                                                                Invites: []components.ChannelInviteInfo{\n                                                                                    components.ChannelInviteInfo{},\n                                                                                    components.ChannelInviteInfo{},\n                                                                                    components.ChannelInviteInfo{},\n                                                                                },\n                                                                            },\n                                                                            Badges: []components.Badge{\n                                                                                components.Badge{\n                                                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                                    IconConfig: &components.IconConfig{\n                                                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                                                    },\n                                                                                },\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                    Role: components.UserRoleAnswerModerator,\n                                                                },\n                                                                components.UserRoleSpecification{\n                                                                    Person: &components.Person{\n                                                                        Name: \"George Clooney\",\n                                                                        ObfuscatedID: \"abc123\",\n                                                                        Metadata: &components.PersonMetadata{\n                                                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                            DatasourceProfile: []components.DatasourceProfile{\n                                                                                components.DatasourceProfile{\n                                                                                    Datasource: \"github\",\n                                                                                    Handle: \"<value>\",\n                                                                                },\n                                                                                components.DatasourceProfile{\n                                                                                    Datasource: \"github\",\n                                                                                    Handle: \"<value>\",\n                                                                                },\n                                                                            },\n                                                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                                                Suggestions: []components.QuerySuggestion{\n                                                                                    components.QuerySuggestion{\n                                                                                        Query: \"app:github type:pull author:mortimer\",\n                                                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                                                    },\n                                                                                },\n                                                                            },\n                                                                            InviteInfo: &components.InviteInfo{\n                                                                                Invites: []components.ChannelInviteInfo{\n                                                                                    components.ChannelInviteInfo{},\n                                                                                    components.ChannelInviteInfo{},\n                                                                                    components.ChannelInviteInfo{},\n                                                                                },\n                                                                            },\n                                                                            Badges: []components.Badge{\n                                                                                components.Badge{\n                                                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                                    IconConfig: &components.IconConfig{\n                                                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                                                    },\n                                                                                },\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                    Role: components.UserRoleAnswerModerator,\n                                                                },\n                                                            },\n                                                        },\n                                                        ItemType: components.CollectionItemItemTypeCollection,\n                                                    },\n                                                    components.CollectionItem{\n                                                        CollectionID: 420359,\n                                                        CreatedBy: &components.Person{\n                                                            Name: \"George Clooney\",\n                                                            ObfuscatedID: \"abc123\",\n                                                            Metadata: &components.PersonMetadata{\n                                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                DatasourceProfile: []components.DatasourceProfile{\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                },\n                                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                                    Suggestions: []components.QuerySuggestion{\n                                                                        components.QuerySuggestion{\n                                                                            Query: \"app:github type:pull author:mortimer\",\n                                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                                InviteInfo: &components.InviteInfo{\n                                                                    Invites: []components.ChannelInviteInfo{\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                    },\n                                                                },\n                                                                Badges: []components.Badge{\n                                                                    components.Badge{\n                                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                        IconConfig: &components.IconConfig{\n                                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                        Shortcut: &components.Shortcut{\n                                                            InputAlias: \"<value>\",\n                                                            CreatedBy: &components.Person{\n                                                                Name: \"George Clooney\",\n                                                                ObfuscatedID: \"abc123\",\n                                                                Metadata: &components.PersonMetadata{\n                                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                                        components.DatasourceProfile{\n                                                                            Datasource: \"github\",\n                                                                            Handle: \"<value>\",\n                                                                        },\n                                                                        components.DatasourceProfile{\n                                                                            Datasource: \"github\",\n                                                                            Handle: \"<value>\",\n                                                                        },\n                                                                        components.DatasourceProfile{\n                                                                            Datasource: \"github\",\n                                                                            Handle: \"<value>\",\n                                                                        },\n                                                                    },\n                                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                                        Suggestions: []components.QuerySuggestion{\n                                                                            components.QuerySuggestion{\n                                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                    InviteInfo: &components.InviteInfo{\n                                                                        Invites: []components.ChannelInviteInfo{\n                                                                            components.ChannelInviteInfo{},\n                                                                            components.ChannelInviteInfo{},\n                                                                            components.ChannelInviteInfo{},\n                                                                        },\n                                                                    },\n                                                                    Badges: []components.Badge{\n                                                                        components.Badge{\n                                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                            IconConfig: &components.IconConfig{\n                                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                            UpdatedBy: &components.Person{\n                                                                Name: \"George Clooney\",\n                                                                ObfuscatedID: \"abc123\",\n                                                                Metadata: &components.PersonMetadata{\n                                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                                        components.DatasourceProfile{\n                                                                            Datasource: \"github\",\n                                                                            Handle: \"<value>\",\n                                                                        },\n                                                                        components.DatasourceProfile{\n                                                                            Datasource: \"github\",\n                                                                            Handle: \"<value>\",\n                                                                        },\n                                                                    },\n                                                                    QuerySuggestions: &components.QuerySuggestionList{\n                                                                        Suggestions: []components.QuerySuggestion{\n                                                                            components.QuerySuggestion{\n                                                                                Query: \"app:github type:pull author:mortimer\",\n                                                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                    InviteInfo: &components.InviteInfo{\n                                                                        Invites: []components.ChannelInviteInfo{\n                                                                            components.ChannelInviteInfo{},\n                                                                            components.ChannelInviteInfo{},\n                                                                            components.ChannelInviteInfo{},\n                                                                        },\n                                                                    },\n                                                                    Badges: []components.Badge{\n                                                                        components.Badge{\n                                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                            IconConfig: &components.IconConfig{\n                                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                            Roles: []components.UserRoleSpecification{\n                                                                components.UserRoleSpecification{\n                                                                    Person: &components.Person{\n                                                                        Name: \"George Clooney\",\n                                                                        ObfuscatedID: \"abc123\",\n                                                                        Metadata: &components.PersonMetadata{\n                                                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                            DatasourceProfile: []components.DatasourceProfile{\n                                                                                components.DatasourceProfile{\n                                                                                    Datasource: \"github\",\n                                                                                    Handle: \"<value>\",\n                                                                                },\n                                                                                components.DatasourceProfile{\n                                                                                    Datasource: \"github\",\n                                                                                    Handle: \"<value>\",\n                                                                                },\n                                                                            },\n                                                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                                                Suggestions: []components.QuerySuggestion{\n                                                                                    components.QuerySuggestion{\n                                                                                        Query: \"app:github type:pull author:mortimer\",\n                                                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                                                    },\n                                                                                },\n                                                                            },\n                                                                            InviteInfo: &components.InviteInfo{\n                                                                                Invites: []components.ChannelInviteInfo{\n                                                                                    components.ChannelInviteInfo{},\n                                                                                    components.ChannelInviteInfo{},\n                                                                                    components.ChannelInviteInfo{},\n                                                                                },\n                                                                            },\n                                                                            Badges: []components.Badge{\n                                                                                components.Badge{\n                                                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                                    IconConfig: &components.IconConfig{\n                                                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                                                    },\n                                                                                },\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                    Role: components.UserRoleAnswerModerator,\n                                                                },\n                                                                components.UserRoleSpecification{\n                                                                    Person: &components.Person{\n                                                                        Name: \"George Clooney\",\n                                                                        ObfuscatedID: \"abc123\",\n                                                                        Metadata: &components.PersonMetadata{\n                                                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                            DatasourceProfile: []components.DatasourceProfile{\n                                                                                components.DatasourceProfile{\n                                                                                    Datasource: \"github\",\n                                                                                    Handle: \"<value>\",\n                                                                                },\n                                                                                components.DatasourceProfile{\n                                                                                    Datasource: \"github\",\n                                                                                    Handle: \"<value>\",\n                                                                                },\n                                                                            },\n                                                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                                                Suggestions: []components.QuerySuggestion{\n                                                                                    components.QuerySuggestion{\n                                                                                        Query: \"app:github type:pull author:mortimer\",\n                                                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                                                    },\n                                                                                },\n                                                                            },\n                                                                            InviteInfo: &components.InviteInfo{\n                                                                                Invites: []components.ChannelInviteInfo{\n                                                                                    components.ChannelInviteInfo{},\n                                                                                    components.ChannelInviteInfo{},\n                                                                                    components.ChannelInviteInfo{},\n                                                                                },\n                                                                            },\n                                                                            Badges: []components.Badge{\n                                                                                components.Badge{\n                                                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                                    IconConfig: &components.IconConfig{\n                                                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                                                    },\n                                                                                },\n                                                                            },\n                                                                        },\n                                                                    },\n                                                                    Role: components.UserRoleAnswerModerator,\n                                                                },\n                                                            },\n                                                        },\n                                                        ItemType: components.CollectionItemItemTypeCollection,\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        Interactions: &components.DocumentInteractions{\n                                            Reacts: []components.Reaction{\n                                                components.Reaction{\n                                                    Reactors: []components.Person{\n                                                        components.Person{\n                                                            Name: \"George Clooney\",\n                                                            ObfuscatedID: \"abc123\",\n                                                        },\n                                                    },\n                                                },\n                                                components.Reaction{\n                                                    Reactors: []components.Person{\n                                                        components.Person{\n                                                            Name: \"George Clooney\",\n                                                            ObfuscatedID: \"abc123\",\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            Shares: []components.Share{\n                                                components.Share{\n                                                    NumDaysAgo: 582012,\n                                                    Sharer: &components.Person{\n                                                        Name: \"George Clooney\",\n                                                        ObfuscatedID: \"abc123\",\n                                                        Metadata: &components.PersonMetadata{\n                                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                            DatasourceProfile: []components.DatasourceProfile{\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                            },\n                                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                                Suggestions: []components.QuerySuggestion{\n                                                                    components.QuerySuggestion{\n                                                                        Query: \"app:github type:pull author:mortimer\",\n                                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                            InviteInfo: &components.InviteInfo{\n                                                                Invites: []components.ChannelInviteInfo{\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                },\n                                                            },\n                                                            Badges: []components.Badge{\n                                                                components.Badge{\n                                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                    IconConfig: &components.IconConfig{\n                                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        Verification: &components.Verification{\n                                            State: components.StateDeprecated,\n                                            Metadata: &components.VerificationMetadata{\n                                                LastVerifier: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                Reminders: []components.Reminder{\n                                                    components.Reminder{\n                                                        Assignee: components.Person{\n                                                            Name: \"George Clooney\",\n                                                            ObfuscatedID: \"abc123\",\n                                                            Metadata: &components.PersonMetadata{\n                                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                DatasourceProfile: []components.DatasourceProfile{\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                },\n                                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                                    Suggestions: []components.QuerySuggestion{\n                                                                        components.QuerySuggestion{\n                                                                            Query: \"app:github type:pull author:mortimer\",\n                                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                                InviteInfo: &components.InviteInfo{\n                                                                    Invites: []components.ChannelInviteInfo{\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                    },\n                                                                },\n                                                                Badges: []components.Badge{\n                                                                    components.Badge{\n                                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                        IconConfig: &components.IconConfig{\n                                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                        Requestor: &components.Person{\n                                                            Name: \"George Clooney\",\n                                                            ObfuscatedID: \"abc123\",\n                                                            Metadata: &components.PersonMetadata{\n                                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                DatasourceProfile: []components.DatasourceProfile{\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                },\n                                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                                    Suggestions: []components.QuerySuggestion{\n                                                                        components.QuerySuggestion{\n                                                                            Query: \"app:github type:pull author:mortimer\",\n                                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                                InviteInfo: &components.InviteInfo{\n                                                                    Invites: []components.ChannelInviteInfo{\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                    },\n                                                                },\n                                                                Badges: []components.Badge{\n                                                                    components.Badge{\n                                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                        IconConfig: &components.IconConfig{\n                                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                        RemindAt: 785622,\n                                                    },\n                                                    components.Reminder{\n                                                        Assignee: components.Person{\n                                                            Name: \"George Clooney\",\n                                                            ObfuscatedID: \"abc123\",\n                                                            Metadata: &components.PersonMetadata{\n                                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                DatasourceProfile: []components.DatasourceProfile{\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                },\n                                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                                    Suggestions: []components.QuerySuggestion{\n                                                                        components.QuerySuggestion{\n                                                                            Query: \"app:github type:pull author:mortimer\",\n                                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                                InviteInfo: &components.InviteInfo{\n                                                                    Invites: []components.ChannelInviteInfo{\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                    },\n                                                                },\n                                                                Badges: []components.Badge{\n                                                                    components.Badge{\n                                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                        IconConfig: &components.IconConfig{\n                                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                        Requestor: &components.Person{\n                                                            Name: \"George Clooney\",\n                                                            ObfuscatedID: \"abc123\",\n                                                            Metadata: &components.PersonMetadata{\n                                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                DatasourceProfile: []components.DatasourceProfile{\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                },\n                                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                                    Suggestions: []components.QuerySuggestion{\n                                                                        components.QuerySuggestion{\n                                                                            Query: \"app:github type:pull author:mortimer\",\n                                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                                InviteInfo: &components.InviteInfo{\n                                                                    Invites: []components.ChannelInviteInfo{\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                    },\n                                                                },\n                                                                Badges: []components.Badge{\n                                                                    components.Badge{\n                                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                        IconConfig: &components.IconConfig{\n                                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                        RemindAt: 785622,\n                                                    },\n                                                    components.Reminder{\n                                                        Assignee: components.Person{\n                                                            Name: \"George Clooney\",\n                                                            ObfuscatedID: \"abc123\",\n                                                            Metadata: &components.PersonMetadata{\n                                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                DatasourceProfile: []components.DatasourceProfile{\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                },\n                                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                                    Suggestions: []components.QuerySuggestion{\n                                                                        components.QuerySuggestion{\n                                                                            Query: \"app:github type:pull author:mortimer\",\n                                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                                InviteInfo: &components.InviteInfo{\n                                                                    Invites: []components.ChannelInviteInfo{\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                    },\n                                                                },\n                                                                Badges: []components.Badge{\n                                                                    components.Badge{\n                                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                        IconConfig: &components.IconConfig{\n                                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                        Requestor: &components.Person{\n                                                            Name: \"George Clooney\",\n                                                            ObfuscatedID: \"abc123\",\n                                                            Metadata: &components.PersonMetadata{\n                                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                                DatasourceProfile: []components.DatasourceProfile{\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                    components.DatasourceProfile{\n                                                                        Datasource: \"github\",\n                                                                        Handle: \"<value>\",\n                                                                    },\n                                                                },\n                                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                                    Suggestions: []components.QuerySuggestion{\n                                                                        components.QuerySuggestion{\n                                                                            Query: \"app:github type:pull author:mortimer\",\n                                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                                InviteInfo: &components.InviteInfo{\n                                                                    Invites: []components.ChannelInviteInfo{\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                        components.ChannelInviteInfo{},\n                                                                    },\n                                                                },\n                                                                Badges: []components.Badge{\n                                                                    components.Badge{\n                                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                        IconConfig: &components.IconConfig{\n                                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                                        },\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                        RemindAt: 785622,\n                                                    },\n                                                },\n                                                LastReminder: &components.Reminder{\n                                                    Assignee: components.Person{\n                                                        Name: \"George Clooney\",\n                                                        ObfuscatedID: \"abc123\",\n                                                        Metadata: &components.PersonMetadata{\n                                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                            DatasourceProfile: []components.DatasourceProfile{\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                            },\n                                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                                Suggestions: []components.QuerySuggestion{\n                                                                    components.QuerySuggestion{\n                                                                        Query: \"app:github type:pull author:mortimer\",\n                                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                            InviteInfo: &components.InviteInfo{\n                                                                Invites: []components.ChannelInviteInfo{\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                },\n                                                            },\n                                                            Badges: []components.Badge{\n                                                                components.Badge{\n                                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                    IconConfig: &components.IconConfig{\n                                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    Requestor: &components.Person{\n                                                        Name: \"George Clooney\",\n                                                        ObfuscatedID: \"abc123\",\n                                                        Metadata: &components.PersonMetadata{\n                                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                            DatasourceProfile: []components.DatasourceProfile{\n                                                                components.DatasourceProfile{\n                                                                    Datasource: \"github\",\n                                                                    Handle: \"<value>\",\n                                                                },\n                                                            },\n                                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                                Suggestions: []components.QuerySuggestion{\n                                                                    components.QuerySuggestion{\n                                                                        Query: \"app:github type:pull author:mortimer\",\n                                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                            InviteInfo: &components.InviteInfo{\n                                                                Invites: []components.ChannelInviteInfo{\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                    components.ChannelInviteInfo{},\n                                                                },\n                                                            },\n                                                            Badges: []components.Badge{\n                                                                components.Badge{\n                                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                    IconConfig: &components.IconConfig{\n                                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    RemindAt: 269943,\n                                                },\n                                                CandidateVerifiers: []components.Person{\n                                                    components.Person{\n                                                        Name: \"George Clooney\",\n                                                        ObfuscatedID: \"abc123\",\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        Shortcuts: []components.Shortcut{\n                                            components.Shortcut{\n                                                InputAlias: \"<value>\",\n                                                CreatedBy: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                UpdatedBy: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        QuerySuggestions: &components.QuerySuggestionList{\n                                                            Suggestions: []components.QuerySuggestion{\n                                                                components.QuerySuggestion{\n                                                                    Query: \"app:github type:pull author:mortimer\",\n                                                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                                                },\n                                                            },\n                                                        },\n                                                        InviteInfo: &components.InviteInfo{\n                                                            Invites: []components.ChannelInviteInfo{\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                                components.ChannelInviteInfo{},\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        CustomData: map[string]components.CustomDataValue{\n                                            \"someCustomField\": components.CustomDataValue{},\n                                        },\n                                        ContactPerson: &components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                            Metadata: &components.PersonMetadata{\n                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                DatasourceProfile: []components.DatasourceProfile{\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                },\n                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                    Suggestions: []components.QuerySuggestion{\n                                                        components.QuerySuggestion{\n                                                            Query: \"app:github type:pull author:mortimer\",\n                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                        },\n                                                    },\n                                                },\n                                                InviteInfo: &components.InviteInfo{\n                                                    Invites: []components.ChannelInviteInfo{\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                    },\n                                                },\n                                                Badges: []components.Badge{\n                                                    components.Badge{\n                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                        IconConfig: &components.IconConfig{\n                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                },\n                                Title: apiclientgo.Pointer(\"title\"),\n                                URL: \"https://example.com/foo/bar\",\n                                NativeAppURL: apiclientgo.Pointer(\"slack://foo/bar\"),\n                                Snippets: []components.SearchResultSnippet{\n                                    components.SearchResultSnippet{\n                                        MimeType: apiclientgo.Pointer(\"mimeType\"),\n                                        Snippet: \"snippet\",\n                                    },\n                                },\n                                RelatedResults: []components.RelatedDocuments{\n                                    components.RelatedDocuments{\n                                        QuerySuggestion: &components.QuerySuggestion{\n                                            Query: \"app:github type:pull author:mortimer\",\n                                            SearchProviderInfo: &components.SearchProviderInfo{\n                                                Name: apiclientgo.Pointer(\"Google\"),\n                                                SearchLinkURLTemplate: apiclientgo.Pointer(\"https://www.google.com/search?q={query}&hl=en\"),\n                                            },\n                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                            RequestOptions: &components.SearchRequestOptions{\n                                                DatasourceFilter: apiclientgo.Pointer(\"JIRA\"),\n                                                DatasourcesFilter: []string{\n                                                    \"JIRA\",\n                                                },\n                                                QueryOverridesFacetFilters: apiclientgo.Pointer(true),\n                                                FacetFilters: []components.FacetFilter{\n                                                    components.FacetFilter{\n                                                        FieldName: apiclientgo.Pointer(\"type\"),\n                                                        Values: []components.FacetFilterValue{\n                                                            components.FacetFilterValue{\n                                                                Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                RelationType: components.RelationTypeEquals.ToPointer(),\n                                                            },\n                                                            components.FacetFilterValue{\n                                                                Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                RelationType: components.RelationTypeEquals.ToPointer(),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                FacetFilterSets: []components.FacetFilterSet{\n                                                    components.FacetFilterSet{\n                                                        Filters: []components.FacetFilter{\n                                                            components.FacetFilter{\n                                                                FieldName: apiclientgo.Pointer(\"type\"),\n                                                                Values: []components.FacetFilterValue{\n                                                                    components.FacetFilterValue{\n                                                                        Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                    },\n                                                                    components.FacetFilterValue{\n                                                                        Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    components.FacetFilterSet{\n                                                        Filters: []components.FacetFilter{\n                                                            components.FacetFilter{\n                                                                FieldName: apiclientgo.Pointer(\"type\"),\n                                                                Values: []components.FacetFilterValue{\n                                                                    components.FacetFilterValue{\n                                                                        Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                    },\n                                                                    components.FacetFilterValue{\n                                                                        Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    components.FacetFilterSet{\n                                                        Filters: []components.FacetFilter{\n                                                            components.FacetFilter{\n                                                                FieldName: apiclientgo.Pointer(\"type\"),\n                                                                Values: []components.FacetFilterValue{\n                                                                    components.FacetFilterValue{\n                                                                        Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                    },\n                                                                    components.FacetFilterValue{\n                                                                        Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                FacetBucketSize: 127205,\n                                                AuthTokens: []components.AuthToken{\n                                                    components.AuthToken{\n                                                        AccessToken: \"123abc\",\n                                                        Datasource: \"gmail\",\n                                                        Scope: apiclientgo.Pointer(\"email profile https://www.googleapis.com/auth/gmail.readonly\"),\n                                                        TokenType: apiclientgo.Pointer(\"Bearer\"),\n                                                        AuthUser: apiclientgo.Pointer(\"1\"),\n                                                    },\n                                                },\n                                            },\n                                            InputDetails: &components.SearchRequestInputDetails{\n                                                HasCopyPaste: apiclientgo.Pointer(true),\n                                            },\n                                        },\n                                    },\n                                    components.RelatedDocuments{\n                                        QuerySuggestion: &components.QuerySuggestion{\n                                            Query: \"app:github type:pull author:mortimer\",\n                                            SearchProviderInfo: &components.SearchProviderInfo{\n                                                Name: apiclientgo.Pointer(\"Google\"),\n                                                SearchLinkURLTemplate: apiclientgo.Pointer(\"https://www.google.com/search?q={query}&hl=en\"),\n                                            },\n                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                            RequestOptions: &components.SearchRequestOptions{\n                                                DatasourceFilter: apiclientgo.Pointer(\"JIRA\"),\n                                                DatasourcesFilter: []string{\n                                                    \"JIRA\",\n                                                },\n                                                QueryOverridesFacetFilters: apiclientgo.Pointer(true),\n                                                FacetFilters: []components.FacetFilter{\n                                                    components.FacetFilter{\n                                                        FieldName: apiclientgo.Pointer(\"type\"),\n                                                        Values: []components.FacetFilterValue{\n                                                            components.FacetFilterValue{\n                                                                Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                RelationType: components.RelationTypeEquals.ToPointer(),\n                                                            },\n                                                            components.FacetFilterValue{\n                                                                Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                RelationType: components.RelationTypeEquals.ToPointer(),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                FacetFilterSets: []components.FacetFilterSet{\n                                                    components.FacetFilterSet{\n                                                        Filters: []components.FacetFilter{\n                                                            components.FacetFilter{\n                                                                FieldName: apiclientgo.Pointer(\"type\"),\n                                                                Values: []components.FacetFilterValue{\n                                                                    components.FacetFilterValue{\n                                                                        Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                    },\n                                                                    components.FacetFilterValue{\n                                                                        Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    components.FacetFilterSet{\n                                                        Filters: []components.FacetFilter{\n                                                            components.FacetFilter{\n                                                                FieldName: apiclientgo.Pointer(\"type\"),\n                                                                Values: []components.FacetFilterValue{\n                                                                    components.FacetFilterValue{\n                                                                        Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                    },\n                                                                    components.FacetFilterValue{\n                                                                        Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                    components.FacetFilterSet{\n                                                        Filters: []components.FacetFilter{\n                                                            components.FacetFilter{\n                                                                FieldName: apiclientgo.Pointer(\"type\"),\n                                                                Values: []components.FacetFilterValue{\n                                                                    components.FacetFilterValue{\n                                                                        Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                    },\n                                                                    components.FacetFilterValue{\n                                                                        Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                                    },\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                FacetBucketSize: 127205,\n                                                AuthTokens: []components.AuthToken{\n                                                    components.AuthToken{\n                                                        AccessToken: \"123abc\",\n                                                        Datasource: \"gmail\",\n                                                        Scope: apiclientgo.Pointer(\"email profile https://www.googleapis.com/auth/gmail.readonly\"),\n                                                        TokenType: apiclientgo.Pointer(\"Bearer\"),\n                                                        AuthUser: apiclientgo.Pointer(\"1\"),\n                                                    },\n                                                },\n                                            },\n                                            InputDetails: &components.SearchRequestInputDetails{\n                                                HasCopyPaste: apiclientgo.Pointer(true),\n                                            },\n                                        },\n                                    },\n                                },\n                                AllClusteredResults: []components.ClusterGroup{\n                                    components.ClusterGroup{\n                                        VisibleCountHint: 156570,\n                                    },\n                                    components.ClusterGroup{\n                                        VisibleCountHint: 156570,\n                                    },\n                                },\n                                MustIncludeSuggestions: &components.QuerySuggestionList{\n                                    Person: &components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                },\n                                QuerySuggestion: &components.QuerySuggestion{\n                                    Query: \"app:github type:pull author:mortimer\",\n                                    SearchProviderInfo: &components.SearchProviderInfo{\n                                        Name: apiclientgo.Pointer(\"Google\"),\n                                        SearchLinkURLTemplate: apiclientgo.Pointer(\"https://www.google.com/search?q={query}&hl=en\"),\n                                    },\n                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                    RequestOptions: &components.SearchRequestOptions{\n                                        DatasourceFilter: apiclientgo.Pointer(\"JIRA\"),\n                                        DatasourcesFilter: []string{\n                                            \"JIRA\",\n                                        },\n                                        QueryOverridesFacetFilters: apiclientgo.Pointer(true),\n                                        FacetFilters: []components.FacetFilter{\n                                            components.FacetFilter{\n                                                FieldName: apiclientgo.Pointer(\"type\"),\n                                                Values: []components.FacetFilterValue{\n                                                    components.FacetFilterValue{\n                                                        Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                    },\n                                                    components.FacetFilterValue{\n                                                        Value: apiclientgo.Pointer(\"Presentation\"),\n                                                        RelationType: components.RelationTypeEquals.ToPointer(),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        FacetFilterSets: []components.FacetFilterSet{\n                                            components.FacetFilterSet{\n                                                Filters: []components.FacetFilter{\n                                                    components.FacetFilter{\n                                                        FieldName: apiclientgo.Pointer(\"type\"),\n                                                        Values: []components.FacetFilterValue{\n                                                            components.FacetFilterValue{\n                                                                Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                RelationType: components.RelationTypeEquals.ToPointer(),\n                                                            },\n                                                            components.FacetFilterValue{\n                                                                Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                RelationType: components.RelationTypeEquals.ToPointer(),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            components.FacetFilterSet{\n                                                Filters: []components.FacetFilter{\n                                                    components.FacetFilter{\n                                                        FieldName: apiclientgo.Pointer(\"type\"),\n                                                        Values: []components.FacetFilterValue{\n                                                            components.FacetFilterValue{\n                                                                Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                RelationType: components.RelationTypeEquals.ToPointer(),\n                                                            },\n                                                            components.FacetFilterValue{\n                                                                Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                RelationType: components.RelationTypeEquals.ToPointer(),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            components.FacetFilterSet{\n                                                Filters: []components.FacetFilter{\n                                                    components.FacetFilter{\n                                                        FieldName: apiclientgo.Pointer(\"type\"),\n                                                        Values: []components.FacetFilterValue{\n                                                            components.FacetFilterValue{\n                                                                Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                                                RelationType: components.RelationTypeEquals.ToPointer(),\n                                                            },\n                                                            components.FacetFilterValue{\n                                                                Value: apiclientgo.Pointer(\"Presentation\"),\n                                                                RelationType: components.RelationTypeEquals.ToPointer(),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                        FacetBucketSize: 974103,\n                                        AuthTokens: []components.AuthToken{\n                                            components.AuthToken{\n                                                AccessToken: \"123abc\",\n                                                Datasource: \"gmail\",\n                                                Scope: apiclientgo.Pointer(\"email profile https://www.googleapis.com/auth/gmail.readonly\"),\n                                                TokenType: apiclientgo.Pointer(\"Bearer\"),\n                                                AuthUser: apiclientgo.Pointer(\"1\"),\n                                            },\n                                        },\n                                    },\n                                    InputDetails: &components.SearchRequestInputDetails{\n                                        HasCopyPaste: apiclientgo.Pointer(true),\n                                    },\n                                },\n                            },\n                        },\n                        Meeting: &components.Meeting{\n                            Attendees: &components.CalendarAttendees{\n                                People: []components.CalendarAttendee{\n                                    components.CalendarAttendee{\n                                        Person: components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                            Metadata: &components.PersonMetadata{\n                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                DatasourceProfile: []components.DatasourceProfile{\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                },\n                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                    Suggestions: []components.QuerySuggestion{\n                                                        components.QuerySuggestion{\n                                                            Query: \"app:github type:pull author:mortimer\",\n                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                        },\n                                                    },\n                                                },\n                                                InviteInfo: &components.InviteInfo{\n                                                    Invites: []components.ChannelInviteInfo{\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                    },\n                                                },\n                                                Badges: []components.Badge{\n                                                    components.Badge{\n                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                        IconConfig: &components.IconConfig{\n                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    components.CalendarAttendee{\n                                        Person: components.Person{\n                                            Name: \"George Clooney\",\n                                            ObfuscatedID: \"abc123\",\n                                            Metadata: &components.PersonMetadata{\n                                                Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                Title: apiclientgo.Pointer(\"Actor\"),\n                                                Department: apiclientgo.Pointer(\"Movies\"),\n                                                Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                DatasourceProfile: []components.DatasourceProfile{\n                                                    components.DatasourceProfile{\n                                                        Datasource: \"github\",\n                                                        Handle: \"<value>\",\n                                                    },\n                                                },\n                                                QuerySuggestions: &components.QuerySuggestionList{\n                                                    Suggestions: []components.QuerySuggestion{\n                                                        components.QuerySuggestion{\n                                                            Query: \"app:github type:pull author:mortimer\",\n                                                            Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                            Datasource: apiclientgo.Pointer(\"github\"),\n                                                        },\n                                                    },\n                                                },\n                                                InviteInfo: &components.InviteInfo{\n                                                    Invites: []components.ChannelInviteInfo{\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                        components.ChannelInviteInfo{},\n                                                    },\n                                                },\n                                                Badges: []components.Badge{\n                                                    components.Badge{\n                                                        Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                        DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                        IconConfig: &components.IconConfig{\n                                                            Color: apiclientgo.Pointer(\"#343CED\"),\n                                                            Key: apiclientgo.Pointer(\"person_icon\"),\n                                                            IconType: components.IconTypeGlyph.ToPointer(),\n                                                            Name: apiclientgo.Pointer(\"user\"),\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                },\n                            },\n                        },\n                        Collection: &components.Collection{\n                            Name: \"<value>\",\n                            Description: \"rubric sadly clueless whoever torn rim coaxingly\",\n                            AudienceFilters: []components.FacetFilter{\n                                components.FacetFilter{\n                                    FieldName: apiclientgo.Pointer(\"type\"),\n                                    Values: []components.FacetFilterValue{\n                                        components.FacetFilterValue{\n                                            Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                                            RelationType: components.RelationTypeEquals.ToPointer(),\n                                        },\n                                        components.FacetFilterValue{\n                                            Value: apiclientgo.Pointer(\"Presentation\"),\n                                            RelationType: components.RelationTypeEquals.ToPointer(),\n                                        },\n                                    },\n                                },\n                            },\n                            ID: 690639,\n                            Creator: &components.Person{\n                                Name: \"George Clooney\",\n                                ObfuscatedID: \"abc123\",\n                                Metadata: &components.PersonMetadata{\n                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                    DatasourceProfile: []components.DatasourceProfile{\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                    },\n                                    QuerySuggestions: &components.QuerySuggestionList{\n                                        Suggestions: []components.QuerySuggestion{\n                                            components.QuerySuggestion{\n                                                Query: \"app:github type:pull author:mortimer\",\n                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                            },\n                                        },\n                                    },\n                                    InviteInfo: &components.InviteInfo{\n                                        Invites: []components.ChannelInviteInfo{\n                                            components.ChannelInviteInfo{},\n                                            components.ChannelInviteInfo{},\n                                            components.ChannelInviteInfo{},\n                                        },\n                                    },\n                                    Badges: []components.Badge{\n                                        components.Badge{\n                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                            IconConfig: &components.IconConfig{\n                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                Name: apiclientgo.Pointer(\"user\"),\n                                            },\n                                        },\n                                    },\n                                },\n                            },\n                            UpdatedBy: &components.Person{\n                                Name: \"George Clooney\",\n                                ObfuscatedID: \"abc123\",\n                                Metadata: &components.PersonMetadata{\n                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                    DatasourceProfile: []components.DatasourceProfile{\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                    },\n                                    QuerySuggestions: &components.QuerySuggestionList{\n                                        Suggestions: []components.QuerySuggestion{\n                                            components.QuerySuggestion{\n                                                Query: \"app:github type:pull author:mortimer\",\n                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                            },\n                                        },\n                                    },\n                                    InviteInfo: &components.InviteInfo{\n                                        Invites: []components.ChannelInviteInfo{\n                                            components.ChannelInviteInfo{},\n                                            components.ChannelInviteInfo{},\n                                            components.ChannelInviteInfo{},\n                                        },\n                                    },\n                                    Badges: []components.Badge{\n                                        components.Badge{\n                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                            IconConfig: &components.IconConfig{\n                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                Name: apiclientgo.Pointer(\"user\"),\n                                            },\n                                        },\n                                    },\n                                },\n                            },\n                        },\n                        Code: &components.Code{\n                            RepoName: apiclientgo.Pointer(\"scio\"),\n                            FileName: apiclientgo.Pointer(\"README.md\"),\n                            Lines: []components.CodeLine{\n                                components.CodeLine{},\n                            },\n                        },\n                        Shortcut: &components.Shortcut{\n                            InputAlias: \"<value>\",\n                            CreatedBy: &components.Person{\n                                Name: \"George Clooney\",\n                                ObfuscatedID: \"abc123\",\n                                Metadata: &components.PersonMetadata{\n                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                    DatasourceProfile: []components.DatasourceProfile{\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                    },\n                                    QuerySuggestions: &components.QuerySuggestionList{\n                                        Suggestions: []components.QuerySuggestion{\n                                            components.QuerySuggestion{\n                                                Query: \"app:github type:pull author:mortimer\",\n                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                            },\n                                        },\n                                    },\n                                    InviteInfo: &components.InviteInfo{\n                                        Invites: []components.ChannelInviteInfo{\n                                            components.ChannelInviteInfo{},\n                                            components.ChannelInviteInfo{},\n                                            components.ChannelInviteInfo{},\n                                        },\n                                    },\n                                    Badges: []components.Badge{\n                                        components.Badge{\n                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                            IconConfig: &components.IconConfig{\n                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                Name: apiclientgo.Pointer(\"user\"),\n                                            },\n                                        },\n                                    },\n                                },\n                            },\n                            UpdatedBy: &components.Person{\n                                Name: \"George Clooney\",\n                                ObfuscatedID: \"abc123\",\n                                Metadata: &components.PersonMetadata{\n                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                    DatasourceProfile: []components.DatasourceProfile{\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                    },\n                                    QuerySuggestions: &components.QuerySuggestionList{\n                                        Suggestions: []components.QuerySuggestion{\n                                            components.QuerySuggestion{\n                                                Query: \"app:github type:pull author:mortimer\",\n                                                Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                Datasource: apiclientgo.Pointer(\"github\"),\n                                            },\n                                        },\n                                    },\n                                    InviteInfo: &components.InviteInfo{\n                                        Invites: []components.ChannelInviteInfo{\n                                            components.ChannelInviteInfo{},\n                                            components.ChannelInviteInfo{},\n                                            components.ChannelInviteInfo{},\n                                        },\n                                    },\n                                    Badges: []components.Badge{\n                                        components.Badge{\n                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                            IconConfig: &components.IconConfig{\n                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                Name: apiclientgo.Pointer(\"user\"),\n                                            },\n                                        },\n                                    },\n                                },\n                            },\n                            DestinationDocument: &components.Document{\n                                Metadata: &components.DocumentMetadata{\n                                    Datasource: apiclientgo.Pointer(\"datasource\"),\n                                    ObjectType: apiclientgo.Pointer(\"Feature Request\"),\n                                    Container: apiclientgo.Pointer(\"container\"),\n                                    ParentID: apiclientgo.Pointer(\"JIRA_EN-1337\"),\n                                    MimeType: apiclientgo.Pointer(\"mimeType\"),\n                                    DocumentID: apiclientgo.Pointer(\"documentId\"),\n                                    CreateTime: types.MustNewTimeFromString(\"2000-01-23T04:56:07.000Z\"),\n                                    UpdateTime: types.MustNewTimeFromString(\"2000-01-23T04:56:07.000Z\"),\n                                    Author: &components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    Owner: &components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    Components: []string{\n                                        \"Backend\",\n                                        \"Networking\",\n                                    },\n                                    Status: apiclientgo.Pointer(\"[\\\"Done\\\"]\"),\n                                    AssignedTo: &components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    UpdatedBy: &components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    Verification: &components.Verification{\n                                        State: components.StateVerified,\n                                        Metadata: &components.VerificationMetadata{\n                                            LastVerifier: &components.Person{\n                                                Name: \"George Clooney\",\n                                                ObfuscatedID: \"abc123\",\n                                                Metadata: &components.PersonMetadata{\n                                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                    DatasourceProfile: []components.DatasourceProfile{\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                        components.DatasourceProfile{\n                                                            Datasource: \"github\",\n                                                            Handle: \"<value>\",\n                                                        },\n                                                    },\n                                                    Badges: []components.Badge{\n                                                        components.Badge{\n                                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                            IconConfig: &components.IconConfig{\n                                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                                Name: apiclientgo.Pointer(\"user\"),\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                            },\n                                            LastReminder: &components.Reminder{\n                                                Assignee: components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                Requestor: &components.Person{\n                                                    Name: \"George Clooney\",\n                                                    ObfuscatedID: \"abc123\",\n                                                    Metadata: &components.PersonMetadata{\n                                                        Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                                        Title: apiclientgo.Pointer(\"Actor\"),\n                                                        Department: apiclientgo.Pointer(\"Movies\"),\n                                                        Email: apiclientgo.Pointer(\"george@example.com\"),\n                                                        Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                                        Phone: apiclientgo.Pointer(\"6505551234\"),\n                                                        PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                                        StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                                        DatasourceProfile: []components.DatasourceProfile{\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                            components.DatasourceProfile{\n                                                                Datasource: \"github\",\n                                                                Handle: \"<value>\",\n                                                            },\n                                                        },\n                                                        Badges: []components.Badge{\n                                                            components.Badge{\n                                                                Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                                DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                                IconConfig: &components.IconConfig{\n                                                                    Color: apiclientgo.Pointer(\"#343CED\"),\n                                                                    Key: apiclientgo.Pointer(\"person_icon\"),\n                                                                    IconType: components.IconTypeGlyph.ToPointer(),\n                                                                    Name: apiclientgo.Pointer(\"user\"),\n                                                                },\n                                                            },\n                                                        },\n                                                    },\n                                                },\n                                                RemindAt: 716571,\n                                            },\n                                        },\n                                    },\n                                    CustomData: map[string]components.CustomDataValue{\n                                        \"someCustomField\": components.CustomDataValue{},\n                                    },\n                                    ContactPerson: &components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                },\n                            },\n                            Roles: []components.UserRoleSpecification{\n                                components.UserRoleSpecification{\n                                    Person: &components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                Suggestions: []components.QuerySuggestion{\n                                                    components.QuerySuggestion{\n                                                        Query: \"app:github type:pull author:mortimer\",\n                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                    },\n                                                },\n                                            },\n                                            InviteInfo: &components.InviteInfo{\n                                                Invites: []components.ChannelInviteInfo{\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    Role: components.UserRoleAnswerModerator,\n                                },\n                                components.UserRoleSpecification{\n                                    Person: &components.Person{\n                                        Name: \"George Clooney\",\n                                        ObfuscatedID: \"abc123\",\n                                        Metadata: &components.PersonMetadata{\n                                            Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                            Title: apiclientgo.Pointer(\"Actor\"),\n                                            Department: apiclientgo.Pointer(\"Movies\"),\n                                            Email: apiclientgo.Pointer(\"george@example.com\"),\n                                            Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                            Phone: apiclientgo.Pointer(\"6505551234\"),\n                                            PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                            StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                            DatasourceProfile: []components.DatasourceProfile{\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                                components.DatasourceProfile{\n                                                    Datasource: \"github\",\n                                                    Handle: \"<value>\",\n                                                },\n                                            },\n                                            QuerySuggestions: &components.QuerySuggestionList{\n                                                Suggestions: []components.QuerySuggestion{\n                                                    components.QuerySuggestion{\n                                                        Query: \"app:github type:pull author:mortimer\",\n                                                        Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                                        Datasource: apiclientgo.Pointer(\"github\"),\n                                                    },\n                                                },\n                                            },\n                                            InviteInfo: &components.InviteInfo{\n                                                Invites: []components.ChannelInviteInfo{\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                    components.ChannelInviteInfo{},\n                                                },\n                                            },\n                                            Badges: []components.Badge{\n                                                components.Badge{\n                                                    Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                                    DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                                    IconConfig: &components.IconConfig{\n                                                        Color: apiclientgo.Pointer(\"#343CED\"),\n                                                        Key: apiclientgo.Pointer(\"person_icon\"),\n                                                        IconType: components.IconTypeGlyph.ToPointer(),\n                                                        Name: apiclientgo.Pointer(\"user\"),\n                                                    },\n                                                },\n                                            },\n                                        },\n                                    },\n                                    Role: components.UserRoleAnswerModerator,\n                                },\n                            },\n                        },\n                        QuerySuggestions: &components.QuerySuggestionList{\n                            Suggestions: []components.QuerySuggestion{\n                                components.QuerySuggestion{\n                                    Query: \"app:github type:pull author:mortimer\",\n                                    Label: apiclientgo.Pointer(\"Mortimer's PRs\"),\n                                    Datasource: apiclientgo.Pointer(\"github\"),\n                                },\n                            },\n                            Person: &components.Person{\n                                Name: \"George Clooney\",\n                                ObfuscatedID: \"abc123\",\n                                Metadata: &components.PersonMetadata{\n                                    Type: components.PersonMetadataTypeFullTime.ToPointer(),\n                                    Title: apiclientgo.Pointer(\"Actor\"),\n                                    Department: apiclientgo.Pointer(\"Movies\"),\n                                    Email: apiclientgo.Pointer(\"george@example.com\"),\n                                    Location: apiclientgo.Pointer(\"Hollywood, CA\"),\n                                    Phone: apiclientgo.Pointer(\"6505551234\"),\n                                    PhotoURL: apiclientgo.Pointer(\"https://example.com/george.jpg\"),\n                                    StartDate: types.MustNewDateFromString(\"2000-01-23\"),\n                                    DatasourceProfile: []components.DatasourceProfile{\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                        components.DatasourceProfile{\n                                            Datasource: \"github\",\n                                            Handle: \"<value>\",\n                                        },\n                                    },\n                                    Badges: []components.Badge{\n                                        components.Badge{\n                                            Key: apiclientgo.Pointer(\"deployment_name_new_hire\"),\n                                            DisplayName: apiclientgo.Pointer(\"New hire\"),\n                                            IconConfig: &components.IconConfig{\n                                                Color: apiclientgo.Pointer(\"#343CED\"),\n                                                Key: apiclientgo.Pointer(\"person_icon\"),\n                                                IconType: components.IconTypeGlyph.ToPointer(),\n                                                Name: apiclientgo.Pointer(\"user\"),\n                                            },\n                                        },\n                                    },\n                                },\n                            },\n                        },\n                    },\n                },\n            },\n        },\n        AudienceFilters: []components.FacetFilter{\n            components.FacetFilter{\n                FieldName: apiclientgo.Pointer(\"type\"),\n                Values: []components.FacetFilterValue{\n                    components.FacetFilterValue{\n                        Value: apiclientgo.Pointer(\"Spreadsheet\"),\n                        RelationType: components.RelationTypeEquals.ToPointer(),\n                    },\n                    components.FacetFilterValue{\n                        Value: apiclientgo.Pointer(\"Presentation\"),\n                        RelationType: components.RelationTypeEquals.ToPointer(),\n                    },\n                },\n            },\n        },\n    }, nil)\n    if err != nil {\n        log.Fatal(err)\n    }\n    if res.Announcement != nil {\n        // handle response\n    }\n}"
        - lang: java
          label: Java (API Client)
          source: |-
            package hello.world;

            import com.glean.api_client.glean_api_client.Glean;
            import com.glean.api_client.glean_api_client.models.components.*;
            import com.glean.api_client.glean_api_client.models.operations.CreateannouncementResponse;
            import java.lang.Exception;
            import java.time.LocalDate;
            import java.time.OffsetDateTime;
            import java.util.List;
            import java.util.Map;

            public class Application {

                public static void main(String[] args) throws Exception {

                    Glean sdk = Glean.builder()
                            .apiToken(System.getenv().getOrDefault("GLEAN_API_TOKEN", ""))
                        .build();

                    CreateannouncementResponse res = sdk.client().announcements().create()
                            .createAnnouncementRequest(CreateAnnouncementRequest.builder()
                                .startTime(OffsetDateTime.parse("2023-05-01T12:02:10.816Z"))
                                .endTime(OffsetDateTime.parse("2024-03-17T14:19:30.278Z"))
                                .title("<value>")
                                .body(StructuredText.builder()
                                    .text("From https://en.wikipedia.org/wiki/Diffuse_sky_radiation, the sky is blue because blue light is more strongly scattered than longer-wavelength light.")
                                    .structuredList(List.of(
                                        StructuredTextItem.builder()
                                            .link("https://en.wikipedia.org/wiki/Diffuse_sky_radiation")
                                            .document(Document.builder()
                                                .metadata(DocumentMetadata.builder()
                                                    .datasource("datasource")
                                                    .objectType("Feature Request")
                                                    .container("container")
                                                    .parentId("JIRA_EN-1337")
                                                    .mimeType("mimeType")
                                                    .documentId("documentId")
                                                    .createTime(OffsetDateTime.parse("2000-01-23T04:56:07.000Z"))
                                                    .updateTime(OffsetDateTime.parse("2000-01-23T04:56:07.000Z"))
                                                    .author(Person.builder()
                                                        .name("George Clooney")
                                                        .obfuscatedId("abc123")
                                                        .relatedDocuments(List.of(
                                                            RelatedDocuments.builder()
                                                                .querySuggestion(QuerySuggestion.builder()
                                                                    .query("app:github type:pull author:mortimer")
                                                                    .searchProviderInfo(SearchProviderInfo.builder()
                                                                        .name("Google")
                                                                        .searchLinkUrlTemplate("https://www.google.com/search?q={query}&hl=en")
                                                                        .build())
                                                                    .label("Mortimer's PRs")
                                                                    .datasource("github")
                                                                    .requestOptions(SearchRequestOptions.builder()
                                                                        .facetBucketSize(843281L)
                                                                        .datasourceFilter("JIRA")
                                                                        .datasourcesFilter(List.of(
                                                                            "JIRA"))
                                                                        .queryOverridesFacetFilters(true)
                                                                        .facetFilters(List.of(
                                                                            FacetFilter.builder()
                                                                                .fieldName("type")
                                                                                .values(List.of(
                                                                                    FacetFilterValue.builder()
                                                                                        .value("Spreadsheet")
                                                                                        .relationType(RelationType.EQUALS)
                                                                                        .build(),
                                                                                    FacetFilterValue.builder()
                                                                                        .value("Presentation")
                                                                                        .relationType(RelationType.EQUALS)
                                                                                        .build()))
                                                                                .build()))
                                                                        .facetFilterSets(List.of(
                                                                            FacetFilterSet.builder()
                                                                                .filters(List.of(
                                                                                    FacetFilter.builder()
                                                                                        .fieldName("type")
                                                                                        .values(List.of(
                                                                                            FacetFilterValue.builder()
                                                                                                .value("Spreadsheet")
                                                                                                .relationType(RelationType.EQUALS)
                                                                                                .build(),
                                                                                            FacetFilterValue.builder()
                                                                                                .value("Presentation")
                                                                                                .relationType(RelationType.EQUALS)
                                                                                                .build()))
                                                                                        .build()))
                                                                                .build(),
                                                                            FacetFilterSet.builder()
                                                                                .filters(List.of(
                                                                                    FacetFilter.builder()
                                                                                        .fieldName("type")
                                                                                        .values(List.of(
                                                                                            FacetFilterValue.builder()
                                                                                                .value("Spreadsheet")
                                                                                                .relationType(RelationType.EQUALS)
                                                                                                .build(),
                                                                                            FacetFilterValue.builder()
                                                                                                .value("Presentation")
                                                                                                .relationType(RelationType.EQUALS)
                                                                                                .build()))
                                                                                        .build()))
                                                                                .build()))
                                                                        .authTokens(List.of(
                                                                            AuthToken.builder()
                                                                                .accessToken("123abc")
                                                                                .datasource("gmail")
                                                                                .scope("email profile https://www.googleapis.com/auth/gmail.readonly")
                                                                                .tokenType("Bearer")
                                                                                .authUser("1")
                                                                                .build()))
                                                                        .build())
                                                                    .ranges(List.of(
                                                                        TextRange.builder()
                                                                            .startIndex(925801L)
                                                                            .build(),
                                                                        TextRange.builder()
                                                                            .startIndex(925801L)
                                                                            .build(),
                                                                        TextRange.builder()
                                                                            .startIndex(925801L)
                                                                            .build()))
                                                                    .inputDetails(SearchRequestInputDetails.builder()
                                                                        .hasCopyPaste(true)
                                                                        .build())
                                                                    .build())
                                                                .results(List.of(
                                                                    SearchResult.builder()
                                                                        .url("https://example.com/foo/bar")
                                                                        .title("title")
                                                                        .nativeAppUrl("slack://foo/bar")
                                                                        .snippets(List.of(
                                                                            SearchResultSnippet.builder()
                                                                                .snippet("snippet")
                                                                                .mimeType("mimeType")
                                                                                .build()))
                                                                        .build()))
                                                                .build(),
                                                            RelatedDocuments.builder()
                                                                .querySuggestion(QuerySuggestion.builder()
                                                                    .query("app:github type:pull author:mortimer")
                                                                    .searchProviderInfo(SearchProviderInfo.builder()
                                                                        .name("Google")
                                                                        .searchLinkUrlTemplate("https://www.google.com/search?q={query}&hl=en")
                                                                        .build())
                                                                    .label("Mortimer's PRs")
                                                                    .datasource("github")
                                                                    .requestOptions(SearchRequestOptions.builder()
                                                                        .facetBucketSize(843281L)
                                                                        .datasourceFilter("JIRA")
                                                                        .datasourcesFilter(List.of(
                                                                            "JIRA"))
                                                                        .queryOverridesFacetFilters(true)
                                                                        .facetFilters(List.of(
                                                                            FacetFilter.builder()
                                                                                .fieldName("type")
                                                                                .values(List.of(
                                                                                    FacetFilterValue.builder()
                                                                                        .value("Spreadsheet")
                                                                                        .relationType(RelationType.EQUALS)
                                                                                        .build(),
                                                                                    FacetFilterValue.builder()
                                                                                        .value("Presentation")
                                                                                        .relationType(RelationType.EQUALS)
                                                                                        .build()))
                                                                                .build()))
                                                                        .facetFilterSets(List.of(
                                                                            FacetFilterSet.builder()
                                                                                .filters(List.of(
                                                                                    FacetFilter.builder()
                                                                                        .fieldName("type")
                                                                                        .values(List.of(
                                                                                            FacetFilterValue.builder()
                                                                                                .value("Spreadsheet")
                                                                                                .relationType(RelationType.EQUALS)
                                                                                                .build(),
                                                                                            FacetFilterValue.builder()
                                                                                                .value("Presentation")
                                                                                                .relationType(RelationType.EQUALS)
                                                                                                .build()))
                                                                                        .build()))
                                                                                .build(),
                                                                            FacetFilterSet.builder()
                                                                                .filters(List.of(
                                                                                    FacetFilter.builder()
                                                                                        .fieldName("type")
                                                                                        .values(List.of(
                                                                                            FacetFilterValue.builder()
                                                                                                .value("Spreadsheet")
                                                                                                .relationType(RelationType.EQUALS)
                                                                                                .build(),
                                                                                            FacetFilterValue.builder()
                                                                                                .value("Presentation")
                                                                                                .relationType(RelationType.EQUALS)
                                                                                                .build()))
                                                                                        .build()))
                                                                                .build()))
                                                                        .authTokens(List.of(
                                                                            AuthToken.builder()
                                                                                .accessToken("123abc")
                                                                                .datasource("gmail")
                                                                                .scope("email profile https://www.googleapis.com/auth/gmail.readonly")
                                                                                .tokenType("Bearer")
                                                                                .authUser("1")
                                                                                .build()))
                                                                        .build())
                                                                    .ranges(List.of(
                                                                        TextRange.builder()
                                                                            .startIndex(925801L)
                                                                            .build(),
                                                                        TextRange.builder()
                                                                            .startIndex(925801L)
                                                                            .build(),
                                                                        TextRange.builder()
                                                                            .startIndex(925801L)
                                                                            .build()))
                                                                    .inputDetails(SearchRequestInputDetails.builder()
                                                                        .hasCopyPaste(true)
                                                                        .build())
                                                                    .build())
                                                                .results(List.of(
                                                                    SearchResult.builder()
                                                                        .url("https://example.com/foo/bar")
                                                                        .title("title")
                                                                        .nativeAppUrl("slack://foo/bar")
                                                                        .snippets(List.of(
                                                                            SearchResultSnippet.builder()
                                                                                .snippet("snippet")
                                                                                .mimeType("mimeType")
                                                                                .build()))
                                                                        .build()))
                                                                .build(),
                                                            RelatedDocuments.builder()
                                                                .querySuggestion(QuerySuggestion.builder()
                                                                    .query("app:github type:pull author:mortimer")
                                                                    .searchProviderInfo(SearchProviderInfo.builder()
                                                                        .name("Google")
                                                                        .searchLinkUrlTemplate("https://www.google.com/search?q={query}&hl=en")
                                                                        .build())
                                                                    .label("Mortimer's PRs")
                                                                    .datasource("github")
                                                                    .requestOptions(SearchRequestOptions.builder()
                                                                        .facetBucketSize(843281L)
                                                                        .datasourceFilter("JIRA")
                                                                        .datasourcesFilter(List.of(
                                                                            "JIRA"))
                                                                        .queryOverridesFacetFilters(true)
                                                                        .facetFilters(List.of(
                                                                            FacetFilter.builder()
                                                                                .fieldName("type")
                                                                                .values(List.of(
                                                                                    FacetFilterValue.builder()
                                                                                        .value("Spreadsheet")
                                                                                        .relationType(RelationType.EQUALS)
                                                                                        .build(),
                                                                                    FacetFilterValue.builder()
                                                                                        .value("Presentation")
                                                                                        .relationType(RelationType.EQUALS)
                                                                                        .build()))
                                                                                .build()))
                                                                        .facetFilterSets(List.of(
                                                                            FacetFilterSet.builder()
                                                                                .filters(List.of(
                                                                                    FacetFilter.builder()
                                                                                        .fieldName("type")
                                                                                        .values(List.of(
                                                                                            FacetFilterValue.builder()
                                                                                                .value("Spreadsheet")
                                                                                                .relationType(RelationType.EQUALS)
                                                                                                .build(),
                                                                                            FacetFilterValue.builder()
                                                                                                .value("Presentation")
                                                                                                .relationType(RelationType.EQUALS)
                                                                                                .build()))
                                                                                        .build()))
                                                                                .build(),
                                                                            FacetFilterSet.builder()
                                                                                .filters(List.of(
                                                                                    FacetFilter.builder()
                                                                                        .fieldName("type")
                                                                                        .values(List.of(
                                                                                            FacetFilterValue.builder()
                                                                                                .value("Spreadsheet")
                                                                                                .relationType(RelationType.EQUALS)
                                                                                                .build(),
                                                                                            FacetFilterValue.builder()
                                                                                                .value("Presentation")
                                                                                                .relationType(RelationType.EQUALS)
                                                                                                .build()))
                                                                                        .build()))
                                                                                .build()))
                                                                        .authTokens(List.of(
                                                                            AuthToken.builder()
                                                                                .accessToken("123abc")
                                                                                .datasource("gmail")
                                                                                .scope("email profile https://www.googleapis.com/auth/gmail.readonly")
                                                                                .tokenType("Bearer")
                                                                                .authUser("1")
                                                                                .build()))
                                                                        .build())
                                                                    .ranges(List.of(
                                                                        TextRange.builder()
                                                                            .startIndex(925801L)
                                                                            .build(),
                                                                        TextRange.builder()
                                                                            .startIndex(925801L)
                                                                            .build(),
                                                                        TextRange.builder()
                                                                            .startIndex(925801L)
                                                                            .build()))
                                                                    .inputDetails(SearchRequestInputDetails.builder()
                                                                        .hasCopyPaste(true)
                                                                        .build())
                                                                    .build())
                                                                .results(List.of(
                                                                    SearchResult.builder()
                                                                        .url("https://example.com/foo/bar")
                                                                        .title("title")
                                                                        .nativeAppUrl("slack://foo/bar")
                                                                        .snippets(List.of(
                                                                            SearchResultSnippet.builder()
                                                                                .snippet("snippet")
                                                                                .mimeType("mimeType")
                                                                                .build()))
                                                                        .build()))
                                                                .build()))
                                                        .metadata(PersonMetadata.builder()
                                                            .type(PersonMetadataType.FULL_TIME)
                                                            .title("Actor")
                                                            .department("Movies")
                                                            .email("george@example.com")
                                                            .location("Hollywood, CA")
                                                            .phone("6505551234")
                                                            .photoUrl("https://example.com/george.jpg")
                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                            .datasourceProfile(List.of(
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build(),
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build(),
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build()))
                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                .suggestions(List.of(
                                                                    QuerySuggestion.builder()
                                                                        .query("app:github type:pull author:mortimer")
                                                                        .label("Mortimer's PRs")
                                                                        .datasource("github")
                                                                        .build()))
                                                                .build())
                                                            .inviteInfo(InviteInfo.builder()
                                                                .invites(List.of(
                                                                    ChannelInviteInfo.builder()
                                                                        .build(),
                                                                    ChannelInviteInfo.builder()
                                                                        .build(),
                                                                    ChannelInviteInfo.builder()
                                                                        .build()))
                                                                .build())
                                                            .customFields(List.of(
                                                                CustomFieldData.builder()
                                                                    .label("<value>")
                                                                    .values(List.of(
                                                                        CustomFieldValue.of(CustomFieldValueStr.builder()
                                                                            .build()),
                                                                        CustomFieldValue.of(CustomFieldValueStr.builder()
                                                                            .build())))
                                                                    .build(),
                                                                CustomFieldData.builder()
                                                                    .label("<value>")
                                                                    .values(List.of(
                                                                        CustomFieldValue.of(CustomFieldValueStr.builder()
                                                                            .build()),
                                                                        CustomFieldValue.of(CustomFieldValueStr.builder()
                                                                            .build())))
                                                                    .build(),
                                                                CustomFieldData.builder()
                                                                    .label("<value>")
                                                                    .values(List.of(
                                                                        CustomFieldValue.of(CustomFieldValueStr.builder()
                                                                            .build()),
                                                                        CustomFieldValue.of(CustomFieldValueStr.builder()
                                                                            .build())))
                                                                    .build()))
                                                            .badges(List.of(
                                                                Badge.builder()
                                                                    .key("deployment_name_new_hire")
                                                                    .displayName("New hire")
                                                                    .iconConfig(IconConfig.builder()
                                                                        .color("#343CED")
                                                                        .key("person_icon")
                                                                        .iconType(IconType.GLYPH)
                                                                        .name("user")
                                                                        .build())
                                                                    .build()))
                                                            .build())
                                                        .build())
                                                    .owner(Person.builder()
                                                        .name("George Clooney")
                                                        .obfuscatedId("abc123")
                                                        .metadata(PersonMetadata.builder()
                                                            .type(PersonMetadataType.FULL_TIME)
                                                            .title("Actor")
                                                            .department("Movies")
                                                            .email("george@example.com")
                                                            .location("Hollywood, CA")
                                                            .phone("6505551234")
                                                            .photoUrl("https://example.com/george.jpg")
                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                            .datasourceProfile(List.of(
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build(),
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build(),
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build()))
                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                .suggestions(List.of(
                                                                    QuerySuggestion.builder()
                                                                        .query("app:github type:pull author:mortimer")
                                                                        .label("Mortimer's PRs")
                                                                        .datasource("github")
                                                                        .build()))
                                                                .build())
                                                            .inviteInfo(InviteInfo.builder()
                                                                .invites(List.of(
                                                                    ChannelInviteInfo.builder()
                                                                        .build(),
                                                                    ChannelInviteInfo.builder()
                                                                        .build(),
                                                                    ChannelInviteInfo.builder()
                                                                        .build()))
                                                                .build())
                                                            .badges(List.of(
                                                                Badge.builder()
                                                                    .key("deployment_name_new_hire")
                                                                    .displayName("New hire")
                                                                    .iconConfig(IconConfig.builder()
                                                                        .color("#343CED")
                                                                        .key("person_icon")
                                                                        .iconType(IconType.GLYPH)
                                                                        .name("user")
                                                                        .build())
                                                                    .build()))
                                                            .build())
                                                        .build())
                                                    .mentionedPeople(List.of(
                                                        Person.builder()
                                                            .name("George Clooney")
                                                            .obfuscatedId("abc123")
                                                            .build()))
                                                    .components(List.of(
                                                        "Backend",
                                                        "Networking"))
                                                    .status("[\"Done\"]")
                                                    .pins(List.of(
                                                        PinDocument.builder()
                                                            .documentId("<id>")
                                                            .audienceFilters(List.of(
                                                                FacetFilter.builder()
                                                                    .fieldName("type")
                                                                    .values(List.of(
                                                                        FacetFilterValue.builder()
                                                                            .value("Spreadsheet")
                                                                            .relationType(RelationType.EQUALS)
                                                                            .build(),
                                                                        FacetFilterValue.builder()
                                                                            .value("Presentation")
                                                                            .relationType(RelationType.EQUALS)
                                                                            .build()))
                                                                    .build()))
                                                            .attribution(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                        .suggestions(List.of(
                                                                            QuerySuggestion.builder()
                                                                                .query("app:github type:pull author:mortimer")
                                                                                .label("Mortimer's PRs")
                                                                                .datasource("github")
                                                                                .build()))
                                                                        .build())
                                                                    .inviteInfo(InviteInfo.builder()
                                                                        .invites(List.of(
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build()))
                                                                        .build())
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .updatedBy(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                        .suggestions(List.of(
                                                                            QuerySuggestion.builder()
                                                                                .query("app:github type:pull author:mortimer")
                                                                                .label("Mortimer's PRs")
                                                                                .datasource("github")
                                                                                .build()))
                                                                        .build())
                                                                    .inviteInfo(InviteInfo.builder()
                                                                        .invites(List.of(
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build()))
                                                                        .build())
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .build(),
                                                        PinDocument.builder()
                                                            .documentId("<id>")
                                                            .audienceFilters(List.of(
                                                                FacetFilter.builder()
                                                                    .fieldName("type")
                                                                    .values(List.of(
                                                                        FacetFilterValue.builder()
                                                                            .value("Spreadsheet")
                                                                            .relationType(RelationType.EQUALS)
                                                                            .build(),
                                                                        FacetFilterValue.builder()
                                                                            .value("Presentation")
                                                                            .relationType(RelationType.EQUALS)
                                                                            .build()))
                                                                    .build()))
                                                            .attribution(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                        .suggestions(List.of(
                                                                            QuerySuggestion.builder()
                                                                                .query("app:github type:pull author:mortimer")
                                                                                .label("Mortimer's PRs")
                                                                                .datasource("github")
                                                                                .build()))
                                                                        .build())
                                                                    .inviteInfo(InviteInfo.builder()
                                                                        .invites(List.of(
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build()))
                                                                        .build())
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .updatedBy(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                        .suggestions(List.of(
                                                                            QuerySuggestion.builder()
                                                                                .query("app:github type:pull author:mortimer")
                                                                                .label("Mortimer's PRs")
                                                                                .datasource("github")
                                                                                .build()))
                                                                        .build())
                                                                    .inviteInfo(InviteInfo.builder()
                                                                        .invites(List.of(
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build()))
                                                                        .build())
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .build()))
                                                    .assignedTo(Person.builder()
                                                        .name("George Clooney")
                                                        .obfuscatedId("abc123")
                                                        .metadata(PersonMetadata.builder()
                                                            .type(PersonMetadataType.FULL_TIME)
                                                            .title("Actor")
                                                            .department("Movies")
                                                            .email("george@example.com")
                                                            .location("Hollywood, CA")
                                                            .phone("6505551234")
                                                            .photoUrl("https://example.com/george.jpg")
                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                            .datasourceProfile(List.of(
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build(),
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build(),
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build()))
                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                .suggestions(List.of(
                                                                    QuerySuggestion.builder()
                                                                        .query("app:github type:pull author:mortimer")
                                                                        .label("Mortimer's PRs")
                                                                        .datasource("github")
                                                                        .build()))
                                                                .build())
                                                            .inviteInfo(InviteInfo.builder()
                                                                .invites(List.of(
                                                                    ChannelInviteInfo.builder()
                                                                        .build(),
                                                                    ChannelInviteInfo.builder()
                                                                        .build(),
                                                                    ChannelInviteInfo.builder()
                                                                        .build()))
                                                                .build())
                                                            .badges(List.of(
                                                                Badge.builder()
                                                                    .key("deployment_name_new_hire")
                                                                    .displayName("New hire")
                                                                    .iconConfig(IconConfig.builder()
                                                                        .color("#343CED")
                                                                        .key("person_icon")
                                                                        .iconType(IconType.GLYPH)
                                                                        .name("user")
                                                                        .build())
                                                                    .build()))
                                                            .build())
                                                        .build())
                                                    .updatedBy(Person.builder()
                                                        .name("George Clooney")
                                                        .obfuscatedId("abc123")
                                                        .metadata(PersonMetadata.builder()
                                                            .type(PersonMetadataType.FULL_TIME)
                                                            .title("Actor")
                                                            .department("Movies")
                                                            .email("george@example.com")
                                                            .location("Hollywood, CA")
                                                            .phone("6505551234")
                                                            .photoUrl("https://example.com/george.jpg")
                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                            .datasourceProfile(List.of(
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build(),
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build(),
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build()))
                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                .suggestions(List.of(
                                                                    QuerySuggestion.builder()
                                                                        .query("app:github type:pull author:mortimer")
                                                                        .label("Mortimer's PRs")
                                                                        .datasource("github")
                                                                        .build()))
                                                                .build())
                                                            .inviteInfo(InviteInfo.builder()
                                                                .invites(List.of(
                                                                    ChannelInviteInfo.builder()
                                                                        .build(),
                                                                    ChannelInviteInfo.builder()
                                                                        .build(),
                                                                    ChannelInviteInfo.builder()
                                                                        .build()))
                                                                .build())
                                                            .badges(List.of(
                                                                Badge.builder()
                                                                    .key("deployment_name_new_hire")
                                                                    .displayName("New hire")
                                                                    .iconConfig(IconConfig.builder()
                                                                        .color("#343CED")
                                                                        .key("person_icon")
                                                                        .iconType(IconType.GLYPH)
                                                                        .name("user")
                                                                        .build())
                                                                    .build()))
                                                            .build())
                                                        .build())
                                                    .collections(List.of(
                                                        Collection.builder()
                                                            .name("<value>")
                                                            .description("perfectly flustered dimly")
                                                            .id(83242L)
                                                            .addedRoles(List.of(
                                                                UserRoleSpecification.builder()
                                                                    .role(UserRole.ANSWER_MODERATOR)
                                                                    .person(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                .suggestions(List.of(
                                                                                    QuerySuggestion.builder()
                                                                                        .query("app:github type:pull author:mortimer")
                                                                                        .label("Mortimer's PRs")
                                                                                        .datasource("github")
                                                                                        .build()))
                                                                                .build())
                                                                            .inviteInfo(InviteInfo.builder()
                                                                                .invites(List.of(
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build()))
                                                                                .build())
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .build(),
                                                                UserRoleSpecification.builder()
                                                                    .role(UserRole.ANSWER_MODERATOR)
                                                                    .person(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                .suggestions(List.of(
                                                                                    QuerySuggestion.builder()
                                                                                        .query("app:github type:pull author:mortimer")
                                                                                        .label("Mortimer's PRs")
                                                                                        .datasource("github")
                                                                                        .build()))
                                                                                .build())
                                                                            .inviteInfo(InviteInfo.builder()
                                                                                .invites(List.of(
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build()))
                                                                                .build())
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .build(),
                                                                UserRoleSpecification.builder()
                                                                    .role(UserRole.ANSWER_MODERATOR)
                                                                    .person(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                .suggestions(List.of(
                                                                                    QuerySuggestion.builder()
                                                                                        .query("app:github type:pull author:mortimer")
                                                                                        .label("Mortimer's PRs")
                                                                                        .datasource("github")
                                                                                        .build()))
                                                                                .build())
                                                                            .inviteInfo(InviteInfo.builder()
                                                                                .invites(List.of(
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build()))
                                                                                .build())
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .build()))
                                                            .removedRoles(List.of(
                                                                UserRoleSpecification.builder()
                                                                    .role(UserRole.VERIFIER)
                                                                    .person(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                .suggestions(List.of(
                                                                                    QuerySuggestion.builder()
                                                                                        .query("app:github type:pull author:mortimer")
                                                                                        .label("Mortimer's PRs")
                                                                                        .datasource("github")
                                                                                        .build()))
                                                                                .build())
                                                                            .inviteInfo(InviteInfo.builder()
                                                                                .invites(List.of(
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build()))
                                                                                .build())
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .build()))
                                                            .audienceFilters(List.of(
                                                                FacetFilter.builder()
                                                                    .fieldName("type")
                                                                    .values(List.of(
                                                                        FacetFilterValue.builder()
                                                                            .value("Spreadsheet")
                                                                            .relationType(RelationType.EQUALS)
                                                                            .build(),
                                                                        FacetFilterValue.builder()
                                                                            .value("Presentation")
                                                                            .relationType(RelationType.EQUALS)
                                                                            .build()))
                                                                    .build()))
                                                            .creator(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                        .suggestions(List.of(
                                                                            QuerySuggestion.builder()
                                                                                .query("app:github type:pull author:mortimer")
                                                                                .label("Mortimer's PRs")
                                                                                .datasource("github")
                                                                                .build()))
                                                                        .build())
                                                                    .inviteInfo(InviteInfo.builder()
                                                                        .invites(List.of(
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build()))
                                                                        .build())
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .updatedBy(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                        .suggestions(List.of(
                                                                            QuerySuggestion.builder()
                                                                                .query("app:github type:pull author:mortimer")
                                                                                .label("Mortimer's PRs")
                                                                                .datasource("github")
                                                                                .build()))
                                                                        .build())
                                                                    .inviteInfo(InviteInfo.builder()
                                                                        .invites(List.of(
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build()))
                                                                        .build())
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .items(List.of(
                                                                CollectionItem.builder()
                                                                    .collectionId(420359L)
                                                                    .itemType(CollectionItemItemType.COLLECTION)
                                                                    .createdBy(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                .suggestions(List.of(
                                                                                    QuerySuggestion.builder()
                                                                                        .query("app:github type:pull author:mortimer")
                                                                                        .label("Mortimer's PRs")
                                                                                        .datasource("github")
                                                                                        .build()))
                                                                                .build())
                                                                            .inviteInfo(InviteInfo.builder()
                                                                                .invites(List.of(
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build()))
                                                                                .build())
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .shortcut(Shortcut.builder()
                                                                        .inputAlias("<value>")
                                                                        .createdBy(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .updatedBy(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .roles(List.of(
                                                                            UserRoleSpecification.builder()
                                                                                .role(UserRole.ANSWER_MODERATOR)
                                                                                .person(Person.builder()
                                                                                    .name("George Clooney")
                                                                                    .obfuscatedId("abc123")
                                                                                    .metadata(PersonMetadata.builder()
                                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                                        .title("Actor")
                                                                                        .department("Movies")
                                                                                        .email("george@example.com")
                                                                                        .location("Hollywood, CA")
                                                                                        .phone("6505551234")
                                                                                        .photoUrl("https://example.com/george.jpg")
                                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                                        .datasourceProfile(List.of(
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build(),
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build()))
                                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                                            .suggestions(List.of(
                                                                                                QuerySuggestion.builder()
                                                                                                    .query("app:github type:pull author:mortimer")
                                                                                                    .label("Mortimer's PRs")
                                                                                                    .datasource("github")
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .inviteInfo(InviteInfo.builder()
                                                                                            .invites(List.of(
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .badges(List.of(
                                                                                            Badge.builder()
                                                                                                .key("deployment_name_new_hire")
                                                                                                .displayName("New hire")
                                                                                                .iconConfig(IconConfig.builder()
                                                                                                    .color("#343CED")
                                                                                                    .key("person_icon")
                                                                                                    .iconType(IconType.GLYPH)
                                                                                                    .name("user")
                                                                                                    .build())
                                                                                                .build()))
                                                                                        .build())
                                                                                    .build())
                                                                                .build(),
                                                                            UserRoleSpecification.builder()
                                                                                .role(UserRole.ANSWER_MODERATOR)
                                                                                .person(Person.builder()
                                                                                    .name("George Clooney")
                                                                                    .obfuscatedId("abc123")
                                                                                    .metadata(PersonMetadata.builder()
                                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                                        .title("Actor")
                                                                                        .department("Movies")
                                                                                        .email("george@example.com")
                                                                                        .location("Hollywood, CA")
                                                                                        .phone("6505551234")
                                                                                        .photoUrl("https://example.com/george.jpg")
                                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                                        .datasourceProfile(List.of(
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build(),
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build()))
                                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                                            .suggestions(List.of(
                                                                                                QuerySuggestion.builder()
                                                                                                    .query("app:github type:pull author:mortimer")
                                                                                                    .label("Mortimer's PRs")
                                                                                                    .datasource("github")
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .inviteInfo(InviteInfo.builder()
                                                                                            .invites(List.of(
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .badges(List.of(
                                                                                            Badge.builder()
                                                                                                .key("deployment_name_new_hire")
                                                                                                .displayName("New hire")
                                                                                                .iconConfig(IconConfig.builder()
                                                                                                    .color("#343CED")
                                                                                                    .key("person_icon")
                                                                                                    .iconType(IconType.GLYPH)
                                                                                                    .name("user")
                                                                                                    .build())
                                                                                                .build()))
                                                                                        .build())
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build(),
                                                                CollectionItem.builder()
                                                                    .collectionId(420359L)
                                                                    .itemType(CollectionItemItemType.COLLECTION)
                                                                    .createdBy(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                .suggestions(List.of(
                                                                                    QuerySuggestion.builder()
                                                                                        .query("app:github type:pull author:mortimer")
                                                                                        .label("Mortimer's PRs")
                                                                                        .datasource("github")
                                                                                        .build()))
                                                                                .build())
                                                                            .inviteInfo(InviteInfo.builder()
                                                                                .invites(List.of(
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build()))
                                                                                .build())
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .shortcut(Shortcut.builder()
                                                                        .inputAlias("<value>")
                                                                        .createdBy(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .updatedBy(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .roles(List.of(
                                                                            UserRoleSpecification.builder()
                                                                                .role(UserRole.ANSWER_MODERATOR)
                                                                                .person(Person.builder()
                                                                                    .name("George Clooney")
                                                                                    .obfuscatedId("abc123")
                                                                                    .metadata(PersonMetadata.builder()
                                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                                        .title("Actor")
                                                                                        .department("Movies")
                                                                                        .email("george@example.com")
                                                                                        .location("Hollywood, CA")
                                                                                        .phone("6505551234")
                                                                                        .photoUrl("https://example.com/george.jpg")
                                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                                        .datasourceProfile(List.of(
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build(),
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build()))
                                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                                            .suggestions(List.of(
                                                                                                QuerySuggestion.builder()
                                                                                                    .query("app:github type:pull author:mortimer")
                                                                                                    .label("Mortimer's PRs")
                                                                                                    .datasource("github")
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .inviteInfo(InviteInfo.builder()
                                                                                            .invites(List.of(
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .badges(List.of(
                                                                                            Badge.builder()
                                                                                                .key("deployment_name_new_hire")
                                                                                                .displayName("New hire")
                                                                                                .iconConfig(IconConfig.builder()
                                                                                                    .color("#343CED")
                                                                                                    .key("person_icon")
                                                                                                    .iconType(IconType.GLYPH)
                                                                                                    .name("user")
                                                                                                    .build())
                                                                                                .build()))
                                                                                        .build())
                                                                                    .build())
                                                                                .build(),
                                                                            UserRoleSpecification.builder()
                                                                                .role(UserRole.ANSWER_MODERATOR)
                                                                                .person(Person.builder()
                                                                                    .name("George Clooney")
                                                                                    .obfuscatedId("abc123")
                                                                                    .metadata(PersonMetadata.builder()
                                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                                        .title("Actor")
                                                                                        .department("Movies")
                                                                                        .email("george@example.com")
                                                                                        .location("Hollywood, CA")
                                                                                        .phone("6505551234")
                                                                                        .photoUrl("https://example.com/george.jpg")
                                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                                        .datasourceProfile(List.of(
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build(),
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build()))
                                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                                            .suggestions(List.of(
                                                                                                QuerySuggestion.builder()
                                                                                                    .query("app:github type:pull author:mortimer")
                                                                                                    .label("Mortimer's PRs")
                                                                                                    .datasource("github")
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .inviteInfo(InviteInfo.builder()
                                                                                            .invites(List.of(
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .badges(List.of(
                                                                                            Badge.builder()
                                                                                                .key("deployment_name_new_hire")
                                                                                                .displayName("New hire")
                                                                                                .iconConfig(IconConfig.builder()
                                                                                                    .color("#343CED")
                                                                                                    .key("person_icon")
                                                                                                    .iconType(IconType.GLYPH)
                                                                                                    .name("user")
                                                                                                    .build())
                                                                                                .build()))
                                                                                        .build())
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build()))
                                                            .build()))
                                                    .interactions(DocumentInteractions.builder()
                                                        .reacts(List.of(
                                                            Reaction.builder()
                                                                .reactors(List.of(
                                                                    Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .build()))
                                                                .build(),
                                                            Reaction.builder()
                                                                .reactors(List.of(
                                                                    Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .build()))
                                                                .build()))
                                                        .shares(List.of(
                                                            Share.builder()
                                                                .numDaysAgo(582012L)
                                                                .sharer(Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .metadata(PersonMetadata.builder()
                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                        .title("Actor")
                                                                        .department("Movies")
                                                                        .email("george@example.com")
                                                                        .location("Hollywood, CA")
                                                                        .phone("6505551234")
                                                                        .photoUrl("https://example.com/george.jpg")
                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                        .datasourceProfile(List.of(
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build()))
                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                            .suggestions(List.of(
                                                                                QuerySuggestion.builder()
                                                                                    .query("app:github type:pull author:mortimer")
                                                                                    .label("Mortimer's PRs")
                                                                                    .datasource("github")
                                                                                    .build()))
                                                                            .build())
                                                                        .inviteInfo(InviteInfo.builder()
                                                                            .invites(List.of(
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build()))
                                                                            .build())
                                                                        .badges(List.of(
                                                                            Badge.builder()
                                                                                .key("deployment_name_new_hire")
                                                                                .displayName("New hire")
                                                                                .iconConfig(IconConfig.builder()
                                                                                    .color("#343CED")
                                                                                    .key("person_icon")
                                                                                    .iconType(IconType.GLYPH)
                                                                                    .name("user")
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build())
                                                                .build()))
                                                        .build())
                                                    .verification(Verification.builder()
                                                        .state(State.DEPRECATED)
                                                        .metadata(VerificationMetadata.builder()
                                                            .lastVerifier(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                        .suggestions(List.of(
                                                                            QuerySuggestion.builder()
                                                                                .query("app:github type:pull author:mortimer")
                                                                                .label("Mortimer's PRs")
                                                                                .datasource("github")
                                                                                .build()))
                                                                        .build())
                                                                    .inviteInfo(InviteInfo.builder()
                                                                        .invites(List.of(
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build()))
                                                                        .build())
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .reminders(List.of(
                                                                Reminder.builder()
                                                                    .assignee(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                .suggestions(List.of(
                                                                                    QuerySuggestion.builder()
                                                                                        .query("app:github type:pull author:mortimer")
                                                                                        .label("Mortimer's PRs")
                                                                                        .datasource("github")
                                                                                        .build()))
                                                                                .build())
                                                                            .inviteInfo(InviteInfo.builder()
                                                                                .invites(List.of(
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build()))
                                                                                .build())
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .remindAt(785622L)
                                                                    .requestor(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                .suggestions(List.of(
                                                                                    QuerySuggestion.builder()
                                                                                        .query("app:github type:pull author:mortimer")
                                                                                        .label("Mortimer's PRs")
                                                                                        .datasource("github")
                                                                                        .build()))
                                                                                .build())
                                                                            .inviteInfo(InviteInfo.builder()
                                                                                .invites(List.of(
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build()))
                                                                                .build())
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .build(),
                                                                Reminder.builder()
                                                                    .assignee(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                .suggestions(List.of(
                                                                                    QuerySuggestion.builder()
                                                                                        .query("app:github type:pull author:mortimer")
                                                                                        .label("Mortimer's PRs")
                                                                                        .datasource("github")
                                                                                        .build()))
                                                                                .build())
                                                                            .inviteInfo(InviteInfo.builder()
                                                                                .invites(List.of(
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build()))
                                                                                .build())
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .remindAt(785622L)
                                                                    .requestor(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                .suggestions(List.of(
                                                                                    QuerySuggestion.builder()
                                                                                        .query("app:github type:pull author:mortimer")
                                                                                        .label("Mortimer's PRs")
                                                                                        .datasource("github")
                                                                                        .build()))
                                                                                .build())
                                                                            .inviteInfo(InviteInfo.builder()
                                                                                .invites(List.of(
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build()))
                                                                                .build())
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .build(),
                                                                Reminder.builder()
                                                                    .assignee(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                .suggestions(List.of(
                                                                                    QuerySuggestion.builder()
                                                                                        .query("app:github type:pull author:mortimer")
                                                                                        .label("Mortimer's PRs")
                                                                                        .datasource("github")
                                                                                        .build()))
                                                                                .build())
                                                                            .inviteInfo(InviteInfo.builder()
                                                                                .invites(List.of(
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build()))
                                                                                .build())
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .remindAt(785622L)
                                                                    .requestor(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                .suggestions(List.of(
                                                                                    QuerySuggestion.builder()
                                                                                        .query("app:github type:pull author:mortimer")
                                                                                        .label("Mortimer's PRs")
                                                                                        .datasource("github")
                                                                                        .build()))
                                                                                .build())
                                                                            .inviteInfo(InviteInfo.builder()
                                                                                .invites(List.of(
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build()))
                                                                                .build())
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .build()))
                                                            .lastReminder(Reminder.builder()
                                                                .assignee(Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .metadata(PersonMetadata.builder()
                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                        .title("Actor")
                                                                        .department("Movies")
                                                                        .email("george@example.com")
                                                                        .location("Hollywood, CA")
                                                                        .phone("6505551234")
                                                                        .photoUrl("https://example.com/george.jpg")
                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                        .datasourceProfile(List.of(
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build()))
                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                            .suggestions(List.of(
                                                                                QuerySuggestion.builder()
                                                                                    .query("app:github type:pull author:mortimer")
                                                                                    .label("Mortimer's PRs")
                                                                                    .datasource("github")
                                                                                    .build()))
                                                                            .build())
                                                                        .inviteInfo(InviteInfo.builder()
                                                                            .invites(List.of(
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build()))
                                                                            .build())
                                                                        .badges(List.of(
                                                                            Badge.builder()
                                                                                .key("deployment_name_new_hire")
                                                                                .displayName("New hire")
                                                                                .iconConfig(IconConfig.builder()
                                                                                    .color("#343CED")
                                                                                    .key("person_icon")
                                                                                    .iconType(IconType.GLYPH)
                                                                                    .name("user")
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build())
                                                                .remindAt(269943L)
                                                                .requestor(Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .metadata(PersonMetadata.builder()
                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                        .title("Actor")
                                                                        .department("Movies")
                                                                        .email("george@example.com")
                                                                        .location("Hollywood, CA")
                                                                        .phone("6505551234")
                                                                        .photoUrl("https://example.com/george.jpg")
                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                        .datasourceProfile(List.of(
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build()))
                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                            .suggestions(List.of(
                                                                                QuerySuggestion.builder()
                                                                                    .query("app:github type:pull author:mortimer")
                                                                                    .label("Mortimer's PRs")
                                                                                    .datasource("github")
                                                                                    .build()))
                                                                            .build())
                                                                        .inviteInfo(InviteInfo.builder()
                                                                            .invites(List.of(
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build()))
                                                                            .build())
                                                                        .badges(List.of(
                                                                            Badge.builder()
                                                                                .key("deployment_name_new_hire")
                                                                                .displayName("New hire")
                                                                                .iconConfig(IconConfig.builder()
                                                                                    .color("#343CED")
                                                                                    .key("person_icon")
                                                                                    .iconType(IconType.GLYPH)
                                                                                    .name("user")
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build())
                                                                .build())
                                                            .candidateVerifiers(List.of(
                                                                Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .build()))
                                                            .build())
                                                        .build())
                                                    .shortcuts(List.of(
                                                        Shortcut.builder()
                                                            .inputAlias("<value>")
                                                            .createdBy(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                        .suggestions(List.of(
                                                                            QuerySuggestion.builder()
                                                                                .query("app:github type:pull author:mortimer")
                                                                                .label("Mortimer's PRs")
                                                                                .datasource("github")
                                                                                .build()))
                                                                        .build())
                                                                    .inviteInfo(InviteInfo.builder()
                                                                        .invites(List.of(
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build()))
                                                                        .build())
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .updatedBy(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                        .suggestions(List.of(
                                                                            QuerySuggestion.builder()
                                                                                .query("app:github type:pull author:mortimer")
                                                                                .label("Mortimer's PRs")
                                                                                .datasource("github")
                                                                                .build()))
                                                                        .build())
                                                                    .inviteInfo(InviteInfo.builder()
                                                                        .invites(List.of(
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build()))
                                                                        .build())
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .build()))
                                                    .customData(Map.ofEntries(
                                                        Map.entry("someCustomField", CustomDataValue.builder()
                                                            .build())))
                                                    .contactPerson(Person.builder()
                                                        .name("George Clooney")
                                                        .obfuscatedId("abc123")
                                                        .metadata(PersonMetadata.builder()
                                                            .type(PersonMetadataType.FULL_TIME)
                                                            .title("Actor")
                                                            .department("Movies")
                                                            .email("george@example.com")
                                                            .location("Hollywood, CA")
                                                            .phone("6505551234")
                                                            .photoUrl("https://example.com/george.jpg")
                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                            .datasourceProfile(List.of(
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build(),
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build()))
                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                .suggestions(List.of(
                                                                    QuerySuggestion.builder()
                                                                        .query("app:github type:pull author:mortimer")
                                                                        .label("Mortimer's PRs")
                                                                        .datasource("github")
                                                                        .build()))
                                                                .build())
                                                            .inviteInfo(InviteInfo.builder()
                                                                .invites(List.of(
                                                                    ChannelInviteInfo.builder()
                                                                        .build(),
                                                                    ChannelInviteInfo.builder()
                                                                        .build(),
                                                                    ChannelInviteInfo.builder()
                                                                        .build()))
                                                                .build())
                                                            .badges(List.of(
                                                                Badge.builder()
                                                                    .key("deployment_name_new_hire")
                                                                    .displayName("New hire")
                                                                    .iconConfig(IconConfig.builder()
                                                                        .color("#343CED")
                                                                        .key("person_icon")
                                                                        .iconType(IconType.GLYPH)
                                                                        .name("user")
                                                                        .build())
                                                                    .build()))
                                                            .build())
                                                        .build())
                                                    .build())
                                                .build())
                                            .text("Because its wavelengths are shorter, blue light is more strongly scattered than the longer-wavelength lights, red or green. Hence the result that when looking at the sky away from the direct incident sunlight, the human eye perceives the sky to be blue.")
                                            .structuredResult(StructuredResult.builder()
                                                .document(Document.builder()
                                                    .metadata(DocumentMetadata.builder()
                                                        .datasource("datasource")
                                                        .objectType("Feature Request")
                                                        .container("container")
                                                        .parentId("JIRA_EN-1337")
                                                        .mimeType("mimeType")
                                                        .documentId("documentId")
                                                        .createTime(OffsetDateTime.parse("2000-01-23T04:56:07.000Z"))
                                                        .updateTime(OffsetDateTime.parse("2000-01-23T04:56:07.000Z"))
                                                        .author(Person.builder()
                                                            .name("George Clooney")
                                                            .obfuscatedId("abc123")
                                                            .relatedDocuments(List.of(
                                                                RelatedDocuments.builder()
                                                                    .querySuggestion(QuerySuggestion.builder()
                                                                        .query("app:github type:pull author:mortimer")
                                                                        .searchProviderInfo(SearchProviderInfo.builder()
                                                                            .name("Google")
                                                                            .searchLinkUrlTemplate("https://www.google.com/search?q={query}&hl=en")
                                                                            .build())
                                                                        .label("Mortimer's PRs")
                                                                        .datasource("github")
                                                                        .requestOptions(SearchRequestOptions.builder()
                                                                            .facetBucketSize(843281L)
                                                                            .datasourceFilter("JIRA")
                                                                            .datasourcesFilter(List.of(
                                                                                "JIRA"))
                                                                            .queryOverridesFacetFilters(true)
                                                                            .facetFilters(List.of(
                                                                                FacetFilter.builder()
                                                                                    .fieldName("type")
                                                                                    .values(List.of(
                                                                                        FacetFilterValue.builder()
                                                                                            .value("Spreadsheet")
                                                                                            .relationType(RelationType.EQUALS)
                                                                                            .build(),
                                                                                        FacetFilterValue.builder()
                                                                                            .value("Presentation")
                                                                                            .relationType(RelationType.EQUALS)
                                                                                            .build()))
                                                                                    .build()))
                                                                            .facetFilterSets(List.of(
                                                                                FacetFilterSet.builder()
                                                                                    .filters(List.of(
                                                                                        FacetFilter.builder()
                                                                                            .fieldName("type")
                                                                                            .values(List.of(
                                                                                                FacetFilterValue.builder()
                                                                                                    .value("Spreadsheet")
                                                                                                    .relationType(RelationType.EQUALS)
                                                                                                    .build(),
                                                                                                FacetFilterValue.builder()
                                                                                                    .value("Presentation")
                                                                                                    .relationType(RelationType.EQUALS)
                                                                                                    .build()))
                                                                                            .build()))
                                                                                    .build(),
                                                                                FacetFilterSet.builder()
                                                                                    .filters(List.of(
                                                                                        FacetFilter.builder()
                                                                                            .fieldName("type")
                                                                                            .values(List.of(
                                                                                                FacetFilterValue.builder()
                                                                                                    .value("Spreadsheet")
                                                                                                    .relationType(RelationType.EQUALS)
                                                                                                    .build(),
                                                                                                FacetFilterValue.builder()
                                                                                                    .value("Presentation")
                                                                                                    .relationType(RelationType.EQUALS)
                                                                                                    .build()))
                                                                                            .build()))
                                                                                    .build()))
                                                                            .authTokens(List.of(
                                                                                AuthToken.builder()
                                                                                    .accessToken("123abc")
                                                                                    .datasource("gmail")
                                                                                    .scope("email profile https://www.googleapis.com/auth/gmail.readonly")
                                                                                    .tokenType("Bearer")
                                                                                    .authUser("1")
                                                                                    .build()))
                                                                            .build())
                                                                        .ranges(List.of(
                                                                            TextRange.builder()
                                                                                .startIndex(925801L)
                                                                                .build(),
                                                                            TextRange.builder()
                                                                                .startIndex(925801L)
                                                                                .build(),
                                                                            TextRange.builder()
                                                                                .startIndex(925801L)
                                                                                .build()))
                                                                        .inputDetails(SearchRequestInputDetails.builder()
                                                                            .hasCopyPaste(true)
                                                                            .build())
                                                                        .build())
                                                                    .results(List.of(
                                                                        SearchResult.builder()
                                                                            .url("https://example.com/foo/bar")
                                                                            .title("title")
                                                                            .nativeAppUrl("slack://foo/bar")
                                                                            .snippets(List.of(
                                                                                SearchResultSnippet.builder()
                                                                                    .snippet("snippet")
                                                                                    .mimeType("mimeType")
                                                                                    .build()))
                                                                            .build()))
                                                                    .build(),
                                                                RelatedDocuments.builder()
                                                                    .querySuggestion(QuerySuggestion.builder()
                                                                        .query("app:github type:pull author:mortimer")
                                                                        .searchProviderInfo(SearchProviderInfo.builder()
                                                                            .name("Google")
                                                                            .searchLinkUrlTemplate("https://www.google.com/search?q={query}&hl=en")
                                                                            .build())
                                                                        .label("Mortimer's PRs")
                                                                        .datasource("github")
                                                                        .requestOptions(SearchRequestOptions.builder()
                                                                            .facetBucketSize(843281L)
                                                                            .datasourceFilter("JIRA")
                                                                            .datasourcesFilter(List.of(
                                                                                "JIRA"))
                                                                            .queryOverridesFacetFilters(true)
                                                                            .facetFilters(List.of(
                                                                                FacetFilter.builder()
                                                                                    .fieldName("type")
                                                                                    .values(List.of(
                                                                                        FacetFilterValue.builder()
                                                                                            .value("Spreadsheet")
                                                                                            .relationType(RelationType.EQUALS)
                                                                                            .build(),
                                                                                        FacetFilterValue.builder()
                                                                                            .value("Presentation")
                                                                                            .relationType(RelationType.EQUALS)
                                                                                            .build()))
                                                                                    .build()))
                                                                            .facetFilterSets(List.of(
                                                                                FacetFilterSet.builder()
                                                                                    .filters(List.of(
                                                                                        FacetFilter.builder()
                                                                                            .fieldName("type")
                                                                                            .values(List.of(
                                                                                                FacetFilterValue.builder()
                                                                                                    .value("Spreadsheet")
                                                                                                    .relationType(RelationType.EQUALS)
                                                                                                    .build(),
                                                                                                FacetFilterValue.builder()
                                                                                                    .value("Presentation")
                                                                                                    .relationType(RelationType.EQUALS)
                                                                                                    .build()))
                                                                                            .build()))
                                                                                    .build(),
                                                                                FacetFilterSet.builder()
                                                                                    .filters(List.of(
                                                                                        FacetFilter.builder()
                                                                                            .fieldName("type")
                                                                                            .values(List.of(
                                                                                                FacetFilterValue.builder()
                                                                                                    .value("Spreadsheet")
                                                                                                    .relationType(RelationType.EQUALS)
                                                                                                    .build(),
                                                                                                FacetFilterValue.builder()
                                                                                                    .value("Presentation")
                                                                                                    .relationType(RelationType.EQUALS)
                                                                                                    .build()))
                                                                                            .build()))
                                                                                    .build()))
                                                                            .authTokens(List.of(
                                                                                AuthToken.builder()
                                                                                    .accessToken("123abc")
                                                                                    .datasource("gmail")
                                                                                    .scope("email profile https://www.googleapis.com/auth/gmail.readonly")
                                                                                    .tokenType("Bearer")
                                                                                    .authUser("1")
                                                                                    .build()))
                                                                            .build())
                                                                        .ranges(List.of(
                                                                            TextRange.builder()
                                                                                .startIndex(925801L)
                                                                                .build(),
                                                                            TextRange.builder()
                                                                                .startIndex(925801L)
                                                                                .build(),
                                                                            TextRange.builder()
                                                                                .startIndex(925801L)
                                                                                .build()))
                                                                        .inputDetails(SearchRequestInputDetails.builder()
                                                                            .hasCopyPaste(true)
                                                                            .build())
                                                                        .build())
                                                                    .results(List.of(
                                                                        SearchResult.builder()
                                                                            .url("https://example.com/foo/bar")
                                                                            .title("title")
                                                                            .nativeAppUrl("slack://foo/bar")
                                                                            .snippets(List.of(
                                                                                SearchResultSnippet.builder()
                                                                                    .snippet("snippet")
                                                                                    .mimeType("mimeType")
                                                                                    .build()))
                                                                            .build()))
                                                                    .build(),
                                                                RelatedDocuments.builder()
                                                                    .querySuggestion(QuerySuggestion.builder()
                                                                        .query("app:github type:pull author:mortimer")
                                                                        .searchProviderInfo(SearchProviderInfo.builder()
                                                                            .name("Google")
                                                                            .searchLinkUrlTemplate("https://www.google.com/search?q={query}&hl=en")
                                                                            .build())
                                                                        .label("Mortimer's PRs")
                                                                        .datasource("github")
                                                                        .requestOptions(SearchRequestOptions.builder()
                                                                            .facetBucketSize(843281L)
                                                                            .datasourceFilter("JIRA")
                                                                            .datasourcesFilter(List.of(
                                                                                "JIRA"))
                                                                            .queryOverridesFacetFilters(true)
                                                                            .facetFilters(List.of(
                                                                                FacetFilter.builder()
                                                                                    .fieldName("type")
                                                                                    .values(List.of(
                                                                                        FacetFilterValue.builder()
                                                                                            .value("Spreadsheet")
                                                                                            .relationType(RelationType.EQUALS)
                                                                                            .build(),
                                                                                        FacetFilterValue.builder()
                                                                                            .value("Presentation")
                                                                                            .relationType(RelationType.EQUALS)
                                                                                            .build()))
                                                                                    .build()))
                                                                            .facetFilterSets(List.of(
                                                                                FacetFilterSet.builder()
                                                                                    .filters(List.of(
                                                                                        FacetFilter.builder()
                                                                                            .fieldName("type")
                                                                                            .values(List.of(
                                                                                                FacetFilterValue.builder()
                                                                                                    .value("Spreadsheet")
                                                                                                    .relationType(RelationType.EQUALS)
                                                                                                    .build(),
                                                                                                FacetFilterValue.builder()
                                                                                                    .value("Presentation")
                                                                                                    .relationType(RelationType.EQUALS)
                                                                                                    .build()))
                                                                                            .build()))
                                                                                    .build(),
                                                                                FacetFilterSet.builder()
                                                                                    .filters(List.of(
                                                                                        FacetFilter.builder()
                                                                                            .fieldName("type")
                                                                                            .values(List.of(
                                                                                                FacetFilterValue.builder()
                                                                                                    .value("Spreadsheet")
                                                                                                    .relationType(RelationType.EQUALS)
                                                                                                    .build(),
                                                                                                FacetFilterValue.builder()
                                                                                                    .value("Presentation")
                                                                                                    .relationType(RelationType.EQUALS)
                                                                                                    .build()))
                                                                                            .build()))
                                                                                    .build()))
                                                                            .authTokens(List.of(
                                                                                AuthToken.builder()
                                                                                    .accessToken("123abc")
                                                                                    .datasource("gmail")
                                                                                    .scope("email profile https://www.googleapis.com/auth/gmail.readonly")
                                                                                    .tokenType("Bearer")
                                                                                    .authUser("1")
                                                                                    .build()))
                                                                            .build())
                                                                        .ranges(List.of(
                                                                            TextRange.builder()
                                                                                .startIndex(925801L)
                                                                                .build(),
                                                                            TextRange.builder()
                                                                                .startIndex(925801L)
                                                                                .build(),
                                                                            TextRange.builder()
                                                                                .startIndex(925801L)
                                                                                .build()))
                                                                        .inputDetails(SearchRequestInputDetails.builder()
                                                                            .hasCopyPaste(true)
                                                                            .build())
                                                                        .build())
                                                                    .results(List.of(
                                                                        SearchResult.builder()
                                                                            .url("https://example.com/foo/bar")
                                                                            .title("title")
                                                                            .nativeAppUrl("slack://foo/bar")
                                                                            .snippets(List.of(
                                                                                SearchResultSnippet.builder()
                                                                                    .snippet("snippet")
                                                                                    .mimeType("mimeType")
                                                                                    .build()))
                                                                            .build()))
                                                                    .build()))
                                                            .metadata(PersonMetadata.builder()
                                                                .type(PersonMetadataType.FULL_TIME)
                                                                .title("Actor")
                                                                .department("Movies")
                                                                .email("george@example.com")
                                                                .location("Hollywood, CA")
                                                                .phone("6505551234")
                                                                .photoUrl("https://example.com/george.jpg")
                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                .datasourceProfile(List.of(
                                                                    DatasourceProfile.builder()
                                                                        .datasource("github")
                                                                        .handle("<value>")
                                                                        .build(),
                                                                    DatasourceProfile.builder()
                                                                        .datasource("github")
                                                                        .handle("<value>")
                                                                        .build(),
                                                                    DatasourceProfile.builder()
                                                                        .datasource("github")
                                                                        .handle("<value>")
                                                                        .build()))
                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                    .suggestions(List.of(
                                                                        QuerySuggestion.builder()
                                                                            .query("app:github type:pull author:mortimer")
                                                                            .label("Mortimer's PRs")
                                                                            .datasource("github")
                                                                            .build()))
                                                                    .build())
                                                                .inviteInfo(InviteInfo.builder()
                                                                    .invites(List.of(
                                                                        ChannelInviteInfo.builder()
                                                                            .build(),
                                                                        ChannelInviteInfo.builder()
                                                                            .build(),
                                                                        ChannelInviteInfo.builder()
                                                                            .build()))
                                                                    .build())
                                                                .customFields(List.of(
                                                                    CustomFieldData.builder()
                                                                        .label("<value>")
                                                                        .values(List.of(
                                                                            CustomFieldValue.of(CustomFieldValueStr.builder()
                                                                                .build()),
                                                                            CustomFieldValue.of(CustomFieldValueStr.builder()
                                                                                .build())))
                                                                        .build(),
                                                                    CustomFieldData.builder()
                                                                        .label("<value>")
                                                                        .values(List.of(
                                                                            CustomFieldValue.of(CustomFieldValueStr.builder()
                                                                                .build()),
                                                                            CustomFieldValue.of(CustomFieldValueStr.builder()
                                                                                .build())))
                                                                        .build(),
                                                                    CustomFieldData.builder()
                                                                        .label("<value>")
                                                                        .values(List.of(
                                                                            CustomFieldValue.of(CustomFieldValueStr.builder()
                                                                                .build()),
                                                                            CustomFieldValue.of(CustomFieldValueStr.builder()
                                                                                .build())))
                                                                        .build()))
                                                                .badges(List.of(
                                                                    Badge.builder()
                                                                        .key("deployment_name_new_hire")
                                                                        .displayName("New hire")
                                                                        .iconConfig(IconConfig.builder()
                                                                            .color("#343CED")
                                                                            .key("person_icon")
                                                                            .iconType(IconType.GLYPH)
                                                                            .name("user")
                                                                            .build())
                                                                        .build()))
                                                                .build())
                                                            .build())
                                                        .owner(Person.builder()
                                                            .name("George Clooney")
                                                            .obfuscatedId("abc123")
                                                            .metadata(PersonMetadata.builder()
                                                                .type(PersonMetadataType.FULL_TIME)
                                                                .title("Actor")
                                                                .department("Movies")
                                                                .email("george@example.com")
                                                                .location("Hollywood, CA")
                                                                .phone("6505551234")
                                                                .photoUrl("https://example.com/george.jpg")
                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                .datasourceProfile(List.of(
                                                                    DatasourceProfile.builder()
                                                                        .datasource("github")
                                                                        .handle("<value>")
                                                                        .build(),
                                                                    DatasourceProfile.builder()
                                                                        .datasource("github")
                                                                        .handle("<value>")
                                                                        .build(),
                                                                    DatasourceProfile.builder()
                                                                        .datasource("github")
                                                                        .handle("<value>")
                                                                        .build()))
                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                    .suggestions(List.of(
                                                                        QuerySuggestion.builder()
                                                                            .query("app:github type:pull author:mortimer")
                                                                            .label("Mortimer's PRs")
                                                                            .datasource("github")
                                                                            .build()))
                                                                    .build())
                                                                .inviteInfo(InviteInfo.builder()
                                                                    .invites(List.of(
                                                                        ChannelInviteInfo.builder()
                                                                            .build(),
                                                                        ChannelInviteInfo.builder()
                                                                            .build(),
                                                                        ChannelInviteInfo.builder()
                                                                            .build()))
                                                                    .build())
                                                                .badges(List.of(
                                                                    Badge.builder()
                                                                        .key("deployment_name_new_hire")
                                                                        .displayName("New hire")
                                                                        .iconConfig(IconConfig.builder()
                                                                            .color("#343CED")
                                                                            .key("person_icon")
                                                                            .iconType(IconType.GLYPH)
                                                                            .name("user")
                                                                            .build())
                                                                        .build()))
                                                                .build())
                                                            .build())
                                                        .mentionedPeople(List.of(
                                                            Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .build()))
                                                        .components(List.of(
                                                            "Backend",
                                                            "Networking"))
                                                        .status("[\"Done\"]")
                                                        .pins(List.of(
                                                            PinDocument.builder()
                                                                .documentId("<id>")
                                                                .audienceFilters(List.of(
                                                                    FacetFilter.builder()
                                                                        .fieldName("type")
                                                                        .values(List.of(
                                                                            FacetFilterValue.builder()
                                                                                .value("Spreadsheet")
                                                                                .relationType(RelationType.EQUALS)
                                                                                .build(),
                                                                            FacetFilterValue.builder()
                                                                                .value("Presentation")
                                                                                .relationType(RelationType.EQUALS)
                                                                                .build()))
                                                                        .build()))
                                                                .attribution(Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .metadata(PersonMetadata.builder()
                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                        .title("Actor")
                                                                        .department("Movies")
                                                                        .email("george@example.com")
                                                                        .location("Hollywood, CA")
                                                                        .phone("6505551234")
                                                                        .photoUrl("https://example.com/george.jpg")
                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                        .datasourceProfile(List.of(
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build()))
                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                            .suggestions(List.of(
                                                                                QuerySuggestion.builder()
                                                                                    .query("app:github type:pull author:mortimer")
                                                                                    .label("Mortimer's PRs")
                                                                                    .datasource("github")
                                                                                    .build()))
                                                                            .build())
                                                                        .inviteInfo(InviteInfo.builder()
                                                                            .invites(List.of(
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build()))
                                                                            .build())
                                                                        .badges(List.of(
                                                                            Badge.builder()
                                                                                .key("deployment_name_new_hire")
                                                                                .displayName("New hire")
                                                                                .iconConfig(IconConfig.builder()
                                                                                    .color("#343CED")
                                                                                    .key("person_icon")
                                                                                    .iconType(IconType.GLYPH)
                                                                                    .name("user")
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build())
                                                                .updatedBy(Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .metadata(PersonMetadata.builder()
                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                        .title("Actor")
                                                                        .department("Movies")
                                                                        .email("george@example.com")
                                                                        .location("Hollywood, CA")
                                                                        .phone("6505551234")
                                                                        .photoUrl("https://example.com/george.jpg")
                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                        .datasourceProfile(List.of(
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build()))
                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                            .suggestions(List.of(
                                                                                QuerySuggestion.builder()
                                                                                    .query("app:github type:pull author:mortimer")
                                                                                    .label("Mortimer's PRs")
                                                                                    .datasource("github")
                                                                                    .build()))
                                                                            .build())
                                                                        .inviteInfo(InviteInfo.builder()
                                                                            .invites(List.of(
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build()))
                                                                            .build())
                                                                        .badges(List.of(
                                                                            Badge.builder()
                                                                                .key("deployment_name_new_hire")
                                                                                .displayName("New hire")
                                                                                .iconConfig(IconConfig.builder()
                                                                                    .color("#343CED")
                                                                                    .key("person_icon")
                                                                                    .iconType(IconType.GLYPH)
                                                                                    .name("user")
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build())
                                                                .build(),
                                                            PinDocument.builder()
                                                                .documentId("<id>")
                                                                .audienceFilters(List.of(
                                                                    FacetFilter.builder()
                                                                        .fieldName("type")
                                                                        .values(List.of(
                                                                            FacetFilterValue.builder()
                                                                                .value("Spreadsheet")
                                                                                .relationType(RelationType.EQUALS)
                                                                                .build(),
                                                                            FacetFilterValue.builder()
                                                                                .value("Presentation")
                                                                                .relationType(RelationType.EQUALS)
                                                                                .build()))
                                                                        .build()))
                                                                .attribution(Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .metadata(PersonMetadata.builder()
                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                        .title("Actor")
                                                                        .department("Movies")
                                                                        .email("george@example.com")
                                                                        .location("Hollywood, CA")
                                                                        .phone("6505551234")
                                                                        .photoUrl("https://example.com/george.jpg")
                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                        .datasourceProfile(List.of(
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build()))
                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                            .suggestions(List.of(
                                                                                QuerySuggestion.builder()
                                                                                    .query("app:github type:pull author:mortimer")
                                                                                    .label("Mortimer's PRs")
                                                                                    .datasource("github")
                                                                                    .build()))
                                                                            .build())
                                                                        .inviteInfo(InviteInfo.builder()
                                                                            .invites(List.of(
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build()))
                                                                            .build())
                                                                        .badges(List.of(
                                                                            Badge.builder()
                                                                                .key("deployment_name_new_hire")
                                                                                .displayName("New hire")
                                                                                .iconConfig(IconConfig.builder()
                                                                                    .color("#343CED")
                                                                                    .key("person_icon")
                                                                                    .iconType(IconType.GLYPH)
                                                                                    .name("user")
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build())
                                                                .updatedBy(Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .metadata(PersonMetadata.builder()
                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                        .title("Actor")
                                                                        .department("Movies")
                                                                        .email("george@example.com")
                                                                        .location("Hollywood, CA")
                                                                        .phone("6505551234")
                                                                        .photoUrl("https://example.com/george.jpg")
                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                        .datasourceProfile(List.of(
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build()))
                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                            .suggestions(List.of(
                                                                                QuerySuggestion.builder()
                                                                                    .query("app:github type:pull author:mortimer")
                                                                                    .label("Mortimer's PRs")
                                                                                    .datasource("github")
                                                                                    .build()))
                                                                            .build())
                                                                        .inviteInfo(InviteInfo.builder()
                                                                            .invites(List.of(
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build()))
                                                                            .build())
                                                                        .badges(List.of(
                                                                            Badge.builder()
                                                                                .key("deployment_name_new_hire")
                                                                                .displayName("New hire")
                                                                                .iconConfig(IconConfig.builder()
                                                                                    .color("#343CED")
                                                                                    .key("person_icon")
                                                                                    .iconType(IconType.GLYPH)
                                                                                    .name("user")
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build())
                                                                .build()))
                                                        .assignedTo(Person.builder()
                                                            .name("George Clooney")
                                                            .obfuscatedId("abc123")
                                                            .metadata(PersonMetadata.builder()
                                                                .type(PersonMetadataType.FULL_TIME)
                                                                .title("Actor")
                                                                .department("Movies")
                                                                .email("george@example.com")
                                                                .location("Hollywood, CA")
                                                                .phone("6505551234")
                                                                .photoUrl("https://example.com/george.jpg")
                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                .datasourceProfile(List.of(
                                                                    DatasourceProfile.builder()
                                                                        .datasource("github")
                                                                        .handle("<value>")
                                                                        .build(),
                                                                    DatasourceProfile.builder()
                                                                        .datasource("github")
                                                                        .handle("<value>")
                                                                        .build(),
                                                                    DatasourceProfile.builder()
                                                                        .datasource("github")
                                                                        .handle("<value>")
                                                                        .build()))
                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                    .suggestions(List.of(
                                                                        QuerySuggestion.builder()
                                                                            .query("app:github type:pull author:mortimer")
                                                                            .label("Mortimer's PRs")
                                                                            .datasource("github")
                                                                            .build()))
                                                                    .build())
                                                                .inviteInfo(InviteInfo.builder()
                                                                    .invites(List.of(
                                                                        ChannelInviteInfo.builder()
                                                                            .build(),
                                                                        ChannelInviteInfo.builder()
                                                                            .build(),
                                                                        ChannelInviteInfo.builder()
                                                                            .build()))
                                                                    .build())
                                                                .badges(List.of(
                                                                    Badge.builder()
                                                                        .key("deployment_name_new_hire")
                                                                        .displayName("New hire")
                                                                        .iconConfig(IconConfig.builder()
                                                                            .color("#343CED")
                                                                            .key("person_icon")
                                                                            .iconType(IconType.GLYPH)
                                                                            .name("user")
                                                                            .build())
                                                                        .build()))
                                                                .build())
                                                            .build())
                                                        .updatedBy(Person.builder()
                                                            .name("George Clooney")
                                                            .obfuscatedId("abc123")
                                                            .metadata(PersonMetadata.builder()
                                                                .type(PersonMetadataType.FULL_TIME)
                                                                .title("Actor")
                                                                .department("Movies")
                                                                .email("george@example.com")
                                                                .location("Hollywood, CA")
                                                                .phone("6505551234")
                                                                .photoUrl("https://example.com/george.jpg")
                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                .datasourceProfile(List.of(
                                                                    DatasourceProfile.builder()
                                                                        .datasource("github")
                                                                        .handle("<value>")
                                                                        .build(),
                                                                    DatasourceProfile.builder()
                                                                        .datasource("github")
                                                                        .handle("<value>")
                                                                        .build(),
                                                                    DatasourceProfile.builder()
                                                                        .datasource("github")
                                                                        .handle("<value>")
                                                                        .build()))
                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                    .suggestions(List.of(
                                                                        QuerySuggestion.builder()
                                                                            .query("app:github type:pull author:mortimer")
                                                                            .label("Mortimer's PRs")
                                                                            .datasource("github")
                                                                            .build()))
                                                                    .build())
                                                                .inviteInfo(InviteInfo.builder()
                                                                    .invites(List.of(
                                                                        ChannelInviteInfo.builder()
                                                                            .build(),
                                                                        ChannelInviteInfo.builder()
                                                                            .build(),
                                                                        ChannelInviteInfo.builder()
                                                                            .build()))
                                                                    .build())
                                                                .badges(List.of(
                                                                    Badge.builder()
                                                                        .key("deployment_name_new_hire")
                                                                        .displayName("New hire")
                                                                        .iconConfig(IconConfig.builder()
                                                                            .color("#343CED")
                                                                            .key("person_icon")
                                                                            .iconType(IconType.GLYPH)
                                                                            .name("user")
                                                                            .build())
                                                                        .build()))
                                                                .build())
                                                            .build())
                                                        .collections(List.of(
                                                            Collection.builder()
                                                                .name("<value>")
                                                                .description("perfectly flustered dimly")
                                                                .id(83242L)
                                                                .addedRoles(List.of(
                                                                    UserRoleSpecification.builder()
                                                                        .role(UserRole.ANSWER_MODERATOR)
                                                                        .person(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .build(),
                                                                    UserRoleSpecification.builder()
                                                                        .role(UserRole.ANSWER_MODERATOR)
                                                                        .person(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .build(),
                                                                    UserRoleSpecification.builder()
                                                                        .role(UserRole.ANSWER_MODERATOR)
                                                                        .person(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .build()))
                                                                .removedRoles(List.of(
                                                                    UserRoleSpecification.builder()
                                                                        .role(UserRole.VERIFIER)
                                                                        .person(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .build()))
                                                                .audienceFilters(List.of(
                                                                    FacetFilter.builder()
                                                                        .fieldName("type")
                                                                        .values(List.of(
                                                                            FacetFilterValue.builder()
                                                                                .value("Spreadsheet")
                                                                                .relationType(RelationType.EQUALS)
                                                                                .build(),
                                                                            FacetFilterValue.builder()
                                                                                .value("Presentation")
                                                                                .relationType(RelationType.EQUALS)
                                                                                .build()))
                                                                        .build()))
                                                                .creator(Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .metadata(PersonMetadata.builder()
                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                        .title("Actor")
                                                                        .department("Movies")
                                                                        .email("george@example.com")
                                                                        .location("Hollywood, CA")
                                                                        .phone("6505551234")
                                                                        .photoUrl("https://example.com/george.jpg")
                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                        .datasourceProfile(List.of(
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build()))
                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                            .suggestions(List.of(
                                                                                QuerySuggestion.builder()
                                                                                    .query("app:github type:pull author:mortimer")
                                                                                    .label("Mortimer's PRs")
                                                                                    .datasource("github")
                                                                                    .build()))
                                                                            .build())
                                                                        .inviteInfo(InviteInfo.builder()
                                                                            .invites(List.of(
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build()))
                                                                            .build())
                                                                        .badges(List.of(
                                                                            Badge.builder()
                                                                                .key("deployment_name_new_hire")
                                                                                .displayName("New hire")
                                                                                .iconConfig(IconConfig.builder()
                                                                                    .color("#343CED")
                                                                                    .key("person_icon")
                                                                                    .iconType(IconType.GLYPH)
                                                                                    .name("user")
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build())
                                                                .updatedBy(Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .metadata(PersonMetadata.builder()
                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                        .title("Actor")
                                                                        .department("Movies")
                                                                        .email("george@example.com")
                                                                        .location("Hollywood, CA")
                                                                        .phone("6505551234")
                                                                        .photoUrl("https://example.com/george.jpg")
                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                        .datasourceProfile(List.of(
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build()))
                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                            .suggestions(List.of(
                                                                                QuerySuggestion.builder()
                                                                                    .query("app:github type:pull author:mortimer")
                                                                                    .label("Mortimer's PRs")
                                                                                    .datasource("github")
                                                                                    .build()))
                                                                            .build())
                                                                        .inviteInfo(InviteInfo.builder()
                                                                            .invites(List.of(
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build()))
                                                                            .build())
                                                                        .badges(List.of(
                                                                            Badge.builder()
                                                                                .key("deployment_name_new_hire")
                                                                                .displayName("New hire")
                                                                                .iconConfig(IconConfig.builder()
                                                                                    .color("#343CED")
                                                                                    .key("person_icon")
                                                                                    .iconType(IconType.GLYPH)
                                                                                    .name("user")
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build())
                                                                .items(List.of(
                                                                    CollectionItem.builder()
                                                                        .collectionId(420359L)
                                                                        .itemType(CollectionItemItemType.COLLECTION)
                                                                        .createdBy(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .shortcut(Shortcut.builder()
                                                                            .inputAlias("<value>")
                                                                            .createdBy(Person.builder()
                                                                                .name("George Clooney")
                                                                                .obfuscatedId("abc123")
                                                                                .metadata(PersonMetadata.builder()
                                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                                    .title("Actor")
                                                                                    .department("Movies")
                                                                                    .email("george@example.com")
                                                                                    .location("Hollywood, CA")
                                                                                    .phone("6505551234")
                                                                                    .photoUrl("https://example.com/george.jpg")
                                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                                    .datasourceProfile(List.of(
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build(),
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build(),
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build()))
                                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                                        .suggestions(List.of(
                                                                                            QuerySuggestion.builder()
                                                                                                .query("app:github type:pull author:mortimer")
                                                                                                .label("Mortimer's PRs")
                                                                                                .datasource("github")
                                                                                                .build()))
                                                                                        .build())
                                                                                    .inviteInfo(InviteInfo.builder()
                                                                                        .invites(List.of(
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build()))
                                                                                        .build())
                                                                                    .badges(List.of(
                                                                                        Badge.builder()
                                                                                            .key("deployment_name_new_hire")
                                                                                            .displayName("New hire")
                                                                                            .iconConfig(IconConfig.builder()
                                                                                                .color("#343CED")
                                                                                                .key("person_icon")
                                                                                                .iconType(IconType.GLYPH)
                                                                                                .name("user")
                                                                                                .build())
                                                                                            .build()))
                                                                                    .build())
                                                                                .build())
                                                                            .updatedBy(Person.builder()
                                                                                .name("George Clooney")
                                                                                .obfuscatedId("abc123")
                                                                                .metadata(PersonMetadata.builder()
                                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                                    .title("Actor")
                                                                                    .department("Movies")
                                                                                    .email("george@example.com")
                                                                                    .location("Hollywood, CA")
                                                                                    .phone("6505551234")
                                                                                    .photoUrl("https://example.com/george.jpg")
                                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                                    .datasourceProfile(List.of(
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build(),
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build()))
                                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                                        .suggestions(List.of(
                                                                                            QuerySuggestion.builder()
                                                                                                .query("app:github type:pull author:mortimer")
                                                                                                .label("Mortimer's PRs")
                                                                                                .datasource("github")
                                                                                                .build()))
                                                                                        .build())
                                                                                    .inviteInfo(InviteInfo.builder()
                                                                                        .invites(List.of(
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build()))
                                                                                        .build())
                                                                                    .badges(List.of(
                                                                                        Badge.builder()
                                                                                            .key("deployment_name_new_hire")
                                                                                            .displayName("New hire")
                                                                                            .iconConfig(IconConfig.builder()
                                                                                                .color("#343CED")
                                                                                                .key("person_icon")
                                                                                                .iconType(IconType.GLYPH)
                                                                                                .name("user")
                                                                                                .build())
                                                                                            .build()))
                                                                                    .build())
                                                                                .build())
                                                                            .roles(List.of(
                                                                                UserRoleSpecification.builder()
                                                                                    .role(UserRole.ANSWER_MODERATOR)
                                                                                    .person(Person.builder()
                                                                                        .name("George Clooney")
                                                                                        .obfuscatedId("abc123")
                                                                                        .metadata(PersonMetadata.builder()
                                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                                            .title("Actor")
                                                                                            .department("Movies")
                                                                                            .email("george@example.com")
                                                                                            .location("Hollywood, CA")
                                                                                            .phone("6505551234")
                                                                                            .photoUrl("https://example.com/george.jpg")
                                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                                            .datasourceProfile(List.of(
                                                                                                DatasourceProfile.builder()
                                                                                                    .datasource("github")
                                                                                                    .handle("<value>")
                                                                                                    .build(),
                                                                                                DatasourceProfile.builder()
                                                                                                    .datasource("github")
                                                                                                    .handle("<value>")
                                                                                                    .build()))
                                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                                .suggestions(List.of(
                                                                                                    QuerySuggestion.builder()
                                                                                                        .query("app:github type:pull author:mortimer")
                                                                                                        .label("Mortimer's PRs")
                                                                                                        .datasource("github")
                                                                                                        .build()))
                                                                                                .build())
                                                                                            .inviteInfo(InviteInfo.builder()
                                                                                                .invites(List.of(
                                                                                                    ChannelInviteInfo.builder()
                                                                                                        .build(),
                                                                                                    ChannelInviteInfo.builder()
                                                                                                        .build(),
                                                                                                    ChannelInviteInfo.builder()
                                                                                                        .build()))
                                                                                                .build())
                                                                                            .badges(List.of(
                                                                                                Badge.builder()
                                                                                                    .key("deployment_name_new_hire")
                                                                                                    .displayName("New hire")
                                                                                                    .iconConfig(IconConfig.builder()
                                                                                                        .color("#343CED")
                                                                                                        .key("person_icon")
                                                                                                        .iconType(IconType.GLYPH)
                                                                                                        .name("user")
                                                                                                        .build())
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .build())
                                                                                    .build(),
                                                                                UserRoleSpecification.builder()
                                                                                    .role(UserRole.ANSWER_MODERATOR)
                                                                                    .person(Person.builder()
                                                                                        .name("George Clooney")
                                                                                        .obfuscatedId("abc123")
                                                                                        .metadata(PersonMetadata.builder()
                                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                                            .title("Actor")
                                                                                            .department("Movies")
                                                                                            .email("george@example.com")
                                                                                            .location("Hollywood, CA")
                                                                                            .phone("6505551234")
                                                                                            .photoUrl("https://example.com/george.jpg")
                                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                                            .datasourceProfile(List.of(
                                                                                                DatasourceProfile.builder()
                                                                                                    .datasource("github")
                                                                                                    .handle("<value>")
                                                                                                    .build(),
                                                                                                DatasourceProfile.builder()
                                                                                                    .datasource("github")
                                                                                                    .handle("<value>")
                                                                                                    .build()))
                                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                                .suggestions(List.of(
                                                                                                    QuerySuggestion.builder()
                                                                                                        .query("app:github type:pull author:mortimer")
                                                                                                        .label("Mortimer's PRs")
                                                                                                        .datasource("github")
                                                                                                        .build()))
                                                                                                .build())
                                                                                            .inviteInfo(InviteInfo.builder()
                                                                                                .invites(List.of(
                                                                                                    ChannelInviteInfo.builder()
                                                                                                        .build(),
                                                                                                    ChannelInviteInfo.builder()
                                                                                                        .build(),
                                                                                                    ChannelInviteInfo.builder()
                                                                                                        .build()))
                                                                                                .build())
                                                                                            .badges(List.of(
                                                                                                Badge.builder()
                                                                                                    .key("deployment_name_new_hire")
                                                                                                    .displayName("New hire")
                                                                                                    .iconConfig(IconConfig.builder()
                                                                                                        .color("#343CED")
                                                                                                        .key("person_icon")
                                                                                                        .iconType(IconType.GLYPH)
                                                                                                        .name("user")
                                                                                                        .build())
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build(),
                                                                    CollectionItem.builder()
                                                                        .collectionId(420359L)
                                                                        .itemType(CollectionItemItemType.COLLECTION)
                                                                        .createdBy(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .shortcut(Shortcut.builder()
                                                                            .inputAlias("<value>")
                                                                            .createdBy(Person.builder()
                                                                                .name("George Clooney")
                                                                                .obfuscatedId("abc123")
                                                                                .metadata(PersonMetadata.builder()
                                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                                    .title("Actor")
                                                                                    .department("Movies")
                                                                                    .email("george@example.com")
                                                                                    .location("Hollywood, CA")
                                                                                    .phone("6505551234")
                                                                                    .photoUrl("https://example.com/george.jpg")
                                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                                    .datasourceProfile(List.of(
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build(),
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build(),
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build()))
                                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                                        .suggestions(List.of(
                                                                                            QuerySuggestion.builder()
                                                                                                .query("app:github type:pull author:mortimer")
                                                                                                .label("Mortimer's PRs")
                                                                                                .datasource("github")
                                                                                                .build()))
                                                                                        .build())
                                                                                    .inviteInfo(InviteInfo.builder()
                                                                                        .invites(List.of(
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build()))
                                                                                        .build())
                                                                                    .badges(List.of(
                                                                                        Badge.builder()
                                                                                            .key("deployment_name_new_hire")
                                                                                            .displayName("New hire")
                                                                                            .iconConfig(IconConfig.builder()
                                                                                                .color("#343CED")
                                                                                                .key("person_icon")
                                                                                                .iconType(IconType.GLYPH)
                                                                                                .name("user")
                                                                                                .build())
                                                                                            .build()))
                                                                                    .build())
                                                                                .build())
                                                                            .updatedBy(Person.builder()
                                                                                .name("George Clooney")
                                                                                .obfuscatedId("abc123")
                                                                                .metadata(PersonMetadata.builder()
                                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                                    .title("Actor")
                                                                                    .department("Movies")
                                                                                    .email("george@example.com")
                                                                                    .location("Hollywood, CA")
                                                                                    .phone("6505551234")
                                                                                    .photoUrl("https://example.com/george.jpg")
                                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                                    .datasourceProfile(List.of(
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build(),
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build()))
                                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                                        .suggestions(List.of(
                                                                                            QuerySuggestion.builder()
                                                                                                .query("app:github type:pull author:mortimer")
                                                                                                .label("Mortimer's PRs")
                                                                                                .datasource("github")
                                                                                                .build()))
                                                                                        .build())
                                                                                    .inviteInfo(InviteInfo.builder()
                                                                                        .invites(List.of(
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build()))
                                                                                        .build())
                                                                                    .badges(List.of(
                                                                                        Badge.builder()
                                                                                            .key("deployment_name_new_hire")
                                                                                            .displayName("New hire")
                                                                                            .iconConfig(IconConfig.builder()
                                                                                                .color("#343CED")
                                                                                                .key("person_icon")
                                                                                                .iconType(IconType.GLYPH)
                                                                                                .name("user")
                                                                                                .build())
                                                                                            .build()))
                                                                                    .build())
                                                                                .build())
                                                                            .roles(List.of(
                                                                                UserRoleSpecification.builder()
                                                                                    .role(UserRole.ANSWER_MODERATOR)
                                                                                    .person(Person.builder()
                                                                                        .name("George Clooney")
                                                                                        .obfuscatedId("abc123")
                                                                                        .metadata(PersonMetadata.builder()
                                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                                            .title("Actor")
                                                                                            .department("Movies")
                                                                                            .email("george@example.com")
                                                                                            .location("Hollywood, CA")
                                                                                            .phone("6505551234")
                                                                                            .photoUrl("https://example.com/george.jpg")
                                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                                            .datasourceProfile(List.of(
                                                                                                DatasourceProfile.builder()
                                                                                                    .datasource("github")
                                                                                                    .handle("<value>")
                                                                                                    .build(),
                                                                                                DatasourceProfile.builder()
                                                                                                    .datasource("github")
                                                                                                    .handle("<value>")
                                                                                                    .build()))
                                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                                .suggestions(List.of(
                                                                                                    QuerySuggestion.builder()
                                                                                                        .query("app:github type:pull author:mortimer")
                                                                                                        .label("Mortimer's PRs")
                                                                                                        .datasource("github")
                                                                                                        .build()))
                                                                                                .build())
                                                                                            .inviteInfo(InviteInfo.builder()
                                                                                                .invites(List.of(
                                                                                                    ChannelInviteInfo.builder()
                                                                                                        .build(),
                                                                                                    ChannelInviteInfo.builder()
                                                                                                        .build(),
                                                                                                    ChannelInviteInfo.builder()
                                                                                                        .build()))
                                                                                                .build())
                                                                                            .badges(List.of(
                                                                                                Badge.builder()
                                                                                                    .key("deployment_name_new_hire")
                                                                                                    .displayName("New hire")
                                                                                                    .iconConfig(IconConfig.builder()
                                                                                                        .color("#343CED")
                                                                                                        .key("person_icon")
                                                                                                        .iconType(IconType.GLYPH)
                                                                                                        .name("user")
                                                                                                        .build())
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .build())
                                                                                    .build(),
                                                                                UserRoleSpecification.builder()
                                                                                    .role(UserRole.ANSWER_MODERATOR)
                                                                                    .person(Person.builder()
                                                                                        .name("George Clooney")
                                                                                        .obfuscatedId("abc123")
                                                                                        .metadata(PersonMetadata.builder()
                                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                                            .title("Actor")
                                                                                            .department("Movies")
                                                                                            .email("george@example.com")
                                                                                            .location("Hollywood, CA")
                                                                                            .phone("6505551234")
                                                                                            .photoUrl("https://example.com/george.jpg")
                                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                                            .datasourceProfile(List.of(
                                                                                                DatasourceProfile.builder()
                                                                                                    .datasource("github")
                                                                                                    .handle("<value>")
                                                                                                    .build(),
                                                                                                DatasourceProfile.builder()
                                                                                                    .datasource("github")
                                                                                                    .handle("<value>")
                                                                                                    .build()))
                                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                                .suggestions(List.of(
                                                                                                    QuerySuggestion.builder()
                                                                                                        .query("app:github type:pull author:mortimer")
                                                                                                        .label("Mortimer's PRs")
                                                                                                        .datasource("github")
                                                                                                        .build()))
                                                                                                .build())
                                                                                            .inviteInfo(InviteInfo.builder()
                                                                                                .invites(List.of(
                                                                                                    ChannelInviteInfo.builder()
                                                                                                        .build(),
                                                                                                    ChannelInviteInfo.builder()
                                                                                                        .build(),
                                                                                                    ChannelInviteInfo.builder()
                                                                                                        .build()))
                                                                                                .build())
                                                                                            .badges(List.of(
                                                                                                Badge.builder()
                                                                                                    .key("deployment_name_new_hire")
                                                                                                    .displayName("New hire")
                                                                                                    .iconConfig(IconConfig.builder()
                                                                                                        .color("#343CED")
                                                                                                        .key("person_icon")
                                                                                                        .iconType(IconType.GLYPH)
                                                                                                        .name("user")
                                                                                                        .build())
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build()))
                                                                .build()))
                                                        .interactions(DocumentInteractions.builder()
                                                            .reacts(List.of(
                                                                Reaction.builder()
                                                                    .reactors(List.of(
                                                                        Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .build()))
                                                                    .build(),
                                                                Reaction.builder()
                                                                    .reactors(List.of(
                                                                        Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .build()))
                                                                    .build()))
                                                            .shares(List.of(
                                                                Share.builder()
                                                                    .numDaysAgo(582012L)
                                                                    .sharer(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                .suggestions(List.of(
                                                                                    QuerySuggestion.builder()
                                                                                        .query("app:github type:pull author:mortimer")
                                                                                        .label("Mortimer's PRs")
                                                                                        .datasource("github")
                                                                                        .build()))
                                                                                .build())
                                                                            .inviteInfo(InviteInfo.builder()
                                                                                .invites(List.of(
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build()))
                                                                                .build())
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .build()))
                                                            .build())
                                                        .verification(Verification.builder()
                                                            .state(State.DEPRECATED)
                                                            .metadata(VerificationMetadata.builder()
                                                                .lastVerifier(Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .metadata(PersonMetadata.builder()
                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                        .title("Actor")
                                                                        .department("Movies")
                                                                        .email("george@example.com")
                                                                        .location("Hollywood, CA")
                                                                        .phone("6505551234")
                                                                        .photoUrl("https://example.com/george.jpg")
                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                        .datasourceProfile(List.of(
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build()))
                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                            .suggestions(List.of(
                                                                                QuerySuggestion.builder()
                                                                                    .query("app:github type:pull author:mortimer")
                                                                                    .label("Mortimer's PRs")
                                                                                    .datasource("github")
                                                                                    .build()))
                                                                            .build())
                                                                        .inviteInfo(InviteInfo.builder()
                                                                            .invites(List.of(
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build()))
                                                                            .build())
                                                                        .badges(List.of(
                                                                            Badge.builder()
                                                                                .key("deployment_name_new_hire")
                                                                                .displayName("New hire")
                                                                                .iconConfig(IconConfig.builder()
                                                                                    .color("#343CED")
                                                                                    .key("person_icon")
                                                                                    .iconType(IconType.GLYPH)
                                                                                    .name("user")
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build())
                                                                .reminders(List.of(
                                                                    Reminder.builder()
                                                                        .assignee(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .remindAt(785622L)
                                                                        .requestor(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .build(),
                                                                    Reminder.builder()
                                                                        .assignee(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .remindAt(785622L)
                                                                        .requestor(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .build(),
                                                                    Reminder.builder()
                                                                        .assignee(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .remindAt(785622L)
                                                                        .requestor(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .build()))
                                                                .lastReminder(Reminder.builder()
                                                                    .assignee(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                .suggestions(List.of(
                                                                                    QuerySuggestion.builder()
                                                                                        .query("app:github type:pull author:mortimer")
                                                                                        .label("Mortimer's PRs")
                                                                                        .datasource("github")
                                                                                        .build()))
                                                                                .build())
                                                                            .inviteInfo(InviteInfo.builder()
                                                                                .invites(List.of(
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build()))
                                                                                .build())
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .remindAt(269943L)
                                                                    .requestor(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                .suggestions(List.of(
                                                                                    QuerySuggestion.builder()
                                                                                        .query("app:github type:pull author:mortimer")
                                                                                        .label("Mortimer's PRs")
                                                                                        .datasource("github")
                                                                                        .build()))
                                                                                .build())
                                                                            .inviteInfo(InviteInfo.builder()
                                                                                .invites(List.of(
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build()))
                                                                                .build())
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .build())
                                                                .candidateVerifiers(List.of(
                                                                    Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .build()))
                                                                .build())
                                                            .build())
                                                        .shortcuts(List.of(
                                                            Shortcut.builder()
                                                                .inputAlias("<value>")
                                                                .createdBy(Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .metadata(PersonMetadata.builder()
                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                        .title("Actor")
                                                                        .department("Movies")
                                                                        .email("george@example.com")
                                                                        .location("Hollywood, CA")
                                                                        .phone("6505551234")
                                                                        .photoUrl("https://example.com/george.jpg")
                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                        .datasourceProfile(List.of(
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build()))
                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                            .suggestions(List.of(
                                                                                QuerySuggestion.builder()
                                                                                    .query("app:github type:pull author:mortimer")
                                                                                    .label("Mortimer's PRs")
                                                                                    .datasource("github")
                                                                                    .build()))
                                                                            .build())
                                                                        .inviteInfo(InviteInfo.builder()
                                                                            .invites(List.of(
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build()))
                                                                            .build())
                                                                        .badges(List.of(
                                                                            Badge.builder()
                                                                                .key("deployment_name_new_hire")
                                                                                .displayName("New hire")
                                                                                .iconConfig(IconConfig.builder()
                                                                                    .color("#343CED")
                                                                                    .key("person_icon")
                                                                                    .iconType(IconType.GLYPH)
                                                                                    .name("user")
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build())
                                                                .updatedBy(Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .metadata(PersonMetadata.builder()
                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                        .title("Actor")
                                                                        .department("Movies")
                                                                        .email("george@example.com")
                                                                        .location("Hollywood, CA")
                                                                        .phone("6505551234")
                                                                        .photoUrl("https://example.com/george.jpg")
                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                        .datasourceProfile(List.of(
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build()))
                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                            .suggestions(List.of(
                                                                                QuerySuggestion.builder()
                                                                                    .query("app:github type:pull author:mortimer")
                                                                                    .label("Mortimer's PRs")
                                                                                    .datasource("github")
                                                                                    .build()))
                                                                            .build())
                                                                        .inviteInfo(InviteInfo.builder()
                                                                            .invites(List.of(
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build()))
                                                                            .build())
                                                                        .badges(List.of(
                                                                            Badge.builder()
                                                                                .key("deployment_name_new_hire")
                                                                                .displayName("New hire")
                                                                                .iconConfig(IconConfig.builder()
                                                                                    .color("#343CED")
                                                                                    .key("person_icon")
                                                                                    .iconType(IconType.GLYPH)
                                                                                    .name("user")
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build())
                                                                .build()))
                                                        .customData(Map.ofEntries(
                                                            Map.entry("someCustomField", CustomDataValue.builder()
                                                                .build())))
                                                        .contactPerson(Person.builder()
                                                            .name("George Clooney")
                                                            .obfuscatedId("abc123")
                                                            .metadata(PersonMetadata.builder()
                                                                .type(PersonMetadataType.FULL_TIME)
                                                                .title("Actor")
                                                                .department("Movies")
                                                                .email("george@example.com")
                                                                .location("Hollywood, CA")
                                                                .phone("6505551234")
                                                                .photoUrl("https://example.com/george.jpg")
                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                .datasourceProfile(List.of(
                                                                    DatasourceProfile.builder()
                                                                        .datasource("github")
                                                                        .handle("<value>")
                                                                        .build(),
                                                                    DatasourceProfile.builder()
                                                                        .datasource("github")
                                                                        .handle("<value>")
                                                                        .build()))
                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                    .suggestions(List.of(
                                                                        QuerySuggestion.builder()
                                                                            .query("app:github type:pull author:mortimer")
                                                                            .label("Mortimer's PRs")
                                                                            .datasource("github")
                                                                            .build()))
                                                                    .build())
                                                                .inviteInfo(InviteInfo.builder()
                                                                    .invites(List.of(
                                                                        ChannelInviteInfo.builder()
                                                                            .build(),
                                                                        ChannelInviteInfo.builder()
                                                                            .build(),
                                                                        ChannelInviteInfo.builder()
                                                                            .build()))
                                                                    .build())
                                                                .badges(List.of(
                                                                    Badge.builder()
                                                                        .key("deployment_name_new_hire")
                                                                        .displayName("New hire")
                                                                        .iconConfig(IconConfig.builder()
                                                                            .color("#343CED")
                                                                            .key("person_icon")
                                                                            .iconType(IconType.GLYPH)
                                                                            .name("user")
                                                                            .build())
                                                                        .build()))
                                                                .build())
                                                            .build())
                                                        .build())
                                                    .build())
                                                .person(Person.builder()
                                                    .name("George Clooney")
                                                    .obfuscatedId("abc123")
                                                    .metadata(PersonMetadata.builder()
                                                        .type(PersonMetadataType.FULL_TIME)
                                                        .title("Actor")
                                                        .department("Movies")
                                                        .email("george@example.com")
                                                        .location("Hollywood, CA")
                                                        .phone("6505551234")
                                                        .photoUrl("https://example.com/george.jpg")
                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                        .datasourceProfile(List.of(
                                                            DatasourceProfile.builder()
                                                                .datasource("github")
                                                                .handle("<value>")
                                                                .build()))
                                                        .querySuggestions(QuerySuggestionList.builder()
                                                            .suggestions(List.of(
                                                                QuerySuggestion.builder()
                                                                    .query("app:github type:pull author:mortimer")
                                                                    .label("Mortimer's PRs")
                                                                    .datasource("github")
                                                                    .build()))
                                                            .build())
                                                        .inviteInfo(InviteInfo.builder()
                                                            .invites(List.of(
                                                                ChannelInviteInfo.builder()
                                                                    .build(),
                                                                ChannelInviteInfo.builder()
                                                                    .build(),
                                                                ChannelInviteInfo.builder()
                                                                    .build()))
                                                            .build())
                                                        .badges(List.of(
                                                            Badge.builder()
                                                                .key("deployment_name_new_hire")
                                                                .displayName("New hire")
                                                                .iconConfig(IconConfig.builder()
                                                                    .color("#343CED")
                                                                    .key("person_icon")
                                                                    .iconType(IconType.GLYPH)
                                                                    .name("user")
                                                                    .build())
                                                                .build()))
                                                        .build())
                                                    .build())
                                                .customer(Customer.builder()
                                                    .id("<id>")
                                                    .company(Company.builder()
                                                        .name("<value>")
                                                        .location("New York City")
                                                        .industry("Finances")
                                                        .about("Financial, software, data, and media company headquartered in Midtown Manhattan, New York City")
                                                        .build())
                                                    .poc(List.of(
                                                        Person.builder()
                                                            .name("George Clooney")
                                                            .obfuscatedId("abc123")
                                                            .build()))
                                                    .notes("CIO is interested in trying out the product.")
                                                    .build())
                                                .team(Team.builder()
                                                    .id("<id>")
                                                    .name("<value>")
                                                    .members(List.of(
                                                        PersonToTeamRelationship.builder()
                                                            .person(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                        .suggestions(List.of(
                                                                            QuerySuggestion.builder()
                                                                                .query("app:github type:pull author:mortimer")
                                                                                .label("Mortimer's PRs")
                                                                                .datasource("github")
                                                                                .build()))
                                                                        .build())
                                                                    .inviteInfo(InviteInfo.builder()
                                                                        .invites(List.of(
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build()))
                                                                        .build())
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .build(),
                                                        PersonToTeamRelationship.builder()
                                                            .person(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                        .suggestions(List.of(
                                                                            QuerySuggestion.builder()
                                                                                .query("app:github type:pull author:mortimer")
                                                                                .label("Mortimer's PRs")
                                                                                .datasource("github")
                                                                                .build()))
                                                                        .build())
                                                                    .inviteInfo(InviteInfo.builder()
                                                                        .invites(List.of(
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build()))
                                                                        .build())
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .build(),
                                                        PersonToTeamRelationship.builder()
                                                            .person(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                        .suggestions(List.of(
                                                                            QuerySuggestion.builder()
                                                                                .query("app:github type:pull author:mortimer")
                                                                                .label("Mortimer's PRs")
                                                                                .datasource("github")
                                                                                .build()))
                                                                        .build())
                                                                    .inviteInfo(InviteInfo.builder()
                                                                        .invites(List.of(
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build()))
                                                                        .build())
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .build()))
                                                    .datasourceProfiles(List.of(
                                                        DatasourceProfile.builder()
                                                            .datasource("github")
                                                            .handle("<value>")
                                                            .build()))
                                                    .build())
                                                .answer(Answer.builder()
                                                    .id(3L)
                                                    .docId("ANSWERS_answer_3")
                                                    .question("Why is the sky blue?")
                                                    .bodyText("From https://en.wikipedia.org/wiki/Diffuse_sky_radiation, the sky is blue because blue light is more strongly scattered than longer-wavelength light.")
                                                    .audienceFilters(List.of(
                                                        FacetFilter.builder()
                                                            .fieldName("type")
                                                            .values(List.of(
                                                                FacetFilterValue.builder()
                                                                    .value("Spreadsheet")
                                                                    .relationType(RelationType.EQUALS)
                                                                    .build(),
                                                                FacetFilterValue.builder()
                                                                    .value("Presentation")
                                                                    .relationType(RelationType.EQUALS)
                                                                    .build()))
                                                            .build()))
                                                    .likes(AnswerLikes.builder()
                                                        .likedBy(List.of(
                                                            AnswerLike.builder()
                                                                .user(Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .metadata(PersonMetadata.builder()
                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                        .title("Actor")
                                                                        .department("Movies")
                                                                        .email("george@example.com")
                                                                        .location("Hollywood, CA")
                                                                        .phone("6505551234")
                                                                        .photoUrl("https://example.com/george.jpg")
                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                        .datasourceProfile(List.of(
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build()))
                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                            .suggestions(List.of(
                                                                                QuerySuggestion.builder()
                                                                                    .query("app:github type:pull author:mortimer")
                                                                                    .label("Mortimer's PRs")
                                                                                    .datasource("github")
                                                                                    .build()))
                                                                            .build())
                                                                        .inviteInfo(InviteInfo.builder()
                                                                            .invites(List.of(
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build()))
                                                                            .build())
                                                                        .badges(List.of(
                                                                            Badge.builder()
                                                                                .key("deployment_name_new_hire")
                                                                                .displayName("New hire")
                                                                                .iconConfig(IconConfig.builder()
                                                                                    .color("#343CED")
                                                                                    .key("person_icon")
                                                                                    .iconType(IconType.GLYPH)
                                                                                    .name("user")
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build())
                                                                .build(),
                                                            AnswerLike.builder()
                                                                .user(Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .metadata(PersonMetadata.builder()
                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                        .title("Actor")
                                                                        .department("Movies")
                                                                        .email("george@example.com")
                                                                        .location("Hollywood, CA")
                                                                        .phone("6505551234")
                                                                        .photoUrl("https://example.com/george.jpg")
                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                        .datasourceProfile(List.of(
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build()))
                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                            .suggestions(List.of(
                                                                                QuerySuggestion.builder()
                                                                                    .query("app:github type:pull author:mortimer")
                                                                                    .label("Mortimer's PRs")
                                                                                    .datasource("github")
                                                                                    .build()))
                                                                            .build())
                                                                        .inviteInfo(InviteInfo.builder()
                                                                            .invites(List.of(
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build()))
                                                                            .build())
                                                                        .badges(List.of(
                                                                            Badge.builder()
                                                                                .key("deployment_name_new_hire")
                                                                                .displayName("New hire")
                                                                                .iconConfig(IconConfig.builder()
                                                                                    .color("#343CED")
                                                                                    .key("person_icon")
                                                                                    .iconType(IconType.GLYPH)
                                                                                    .name("user")
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build())
                                                                .build()))
                                                        .likedByUser(false)
                                                        .numLikes(572532L)
                                                        .build())
                                                    .author(Person.builder()
                                                        .name("George Clooney")
                                                        .obfuscatedId("abc123")
                                                        .metadata(PersonMetadata.builder()
                                                            .type(PersonMetadataType.FULL_TIME)
                                                            .title("Actor")
                                                            .department("Movies")
                                                            .email("george@example.com")
                                                            .location("Hollywood, CA")
                                                            .phone("6505551234")
                                                            .photoUrl("https://example.com/george.jpg")
                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                            .datasourceProfile(List.of(
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build(),
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build(),
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build()))
                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                .suggestions(List.of(
                                                                    QuerySuggestion.builder()
                                                                        .query("app:github type:pull author:mortimer")
                                                                        .label("Mortimer's PRs")
                                                                        .datasource("github")
                                                                        .build()))
                                                                .build())
                                                            .inviteInfo(InviteInfo.builder()
                                                                .invites(List.of(
                                                                    ChannelInviteInfo.builder()
                                                                        .build(),
                                                                    ChannelInviteInfo.builder()
                                                                        .build(),
                                                                    ChannelInviteInfo.builder()
                                                                        .build()))
                                                                .build())
                                                            .badges(List.of(
                                                                Badge.builder()
                                                                    .key("deployment_name_new_hire")
                                                                    .displayName("New hire")
                                                                    .iconConfig(IconConfig.builder()
                                                                        .color("#343CED")
                                                                        .key("person_icon")
                                                                        .iconType(IconType.GLYPH)
                                                                        .name("user")
                                                                        .build())
                                                                    .build()))
                                                            .build())
                                                        .build())
                                                    .updatedBy(Person.builder()
                                                        .name("George Clooney")
                                                        .obfuscatedId("abc123")
                                                        .metadata(PersonMetadata.builder()
                                                            .type(PersonMetadataType.FULL_TIME)
                                                            .title("Actor")
                                                            .department("Movies")
                                                            .email("george@example.com")
                                                            .location("Hollywood, CA")
                                                            .phone("6505551234")
                                                            .photoUrl("https://example.com/george.jpg")
                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                            .datasourceProfile(List.of(
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build(),
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build(),
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build()))
                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                .suggestions(List.of(
                                                                    QuerySuggestion.builder()
                                                                        .query("app:github type:pull author:mortimer")
                                                                        .label("Mortimer's PRs")
                                                                        .datasource("github")
                                                                        .build()))
                                                                .build())
                                                            .inviteInfo(InviteInfo.builder()
                                                                .invites(List.of(
                                                                    ChannelInviteInfo.builder()
                                                                        .build(),
                                                                    ChannelInviteInfo.builder()
                                                                        .build(),
                                                                    ChannelInviteInfo.builder()
                                                                        .build()))
                                                                .build())
                                                            .badges(List.of(
                                                                Badge.builder()
                                                                    .key("deployment_name_new_hire")
                                                                    .displayName("New hire")
                                                                    .iconConfig(IconConfig.builder()
                                                                        .color("#343CED")
                                                                        .key("person_icon")
                                                                        .iconType(IconType.GLYPH)
                                                                        .name("user")
                                                                        .build())
                                                                    .build()))
                                                            .build())
                                                        .build())
                                                    .verification(Verification.builder()
                                                        .state(State.DEPRECATED)
                                                        .metadata(VerificationMetadata.builder()
                                                            .lastVerifier(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                        .suggestions(List.of(
                                                                            QuerySuggestion.builder()
                                                                                .query("app:github type:pull author:mortimer")
                                                                                .label("Mortimer's PRs")
                                                                                .datasource("github")
                                                                                .build()))
                                                                        .build())
                                                                    .inviteInfo(InviteInfo.builder()
                                                                        .invites(List.of(
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build()))
                                                                        .build())
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .document(Document.builder()
                                                                .metadata(DocumentMetadata.builder()
                                                                    .datasource("datasource")
                                                                    .objectType("Feature Request")
                                                                    .container("container")
                                                                    .parentId("JIRA_EN-1337")
                                                                    .mimeType("mimeType")
                                                                    .documentId("documentId")
                                                                    .createTime(OffsetDateTime.parse("2000-01-23T04:56:07.000Z"))
                                                                    .updateTime(OffsetDateTime.parse("2000-01-23T04:56:07.000Z"))
                                                                    .author(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .owner(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .components(List.of(
                                                                        "Backend",
                                                                        "Networking"))
                                                                    .status("[\"Done\"]")
                                                                    .assignedTo(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .updatedBy(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .customData(Map.ofEntries(
                                                                        Map.entry("someCustomField", CustomDataValue.builder()
                                                                            .build())))
                                                                    .contactPerson(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .build())
                                                                .build())
                                                            .reminders(List.of(
                                                                Reminder.builder()
                                                                    .assignee(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                .suggestions(List.of(
                                                                                    QuerySuggestion.builder()
                                                                                        .query("app:github type:pull author:mortimer")
                                                                                        .label("Mortimer's PRs")
                                                                                        .datasource("github")
                                                                                        .build()))
                                                                                .build())
                                                                            .inviteInfo(InviteInfo.builder()
                                                                                .invites(List.of(
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build()))
                                                                                .build())
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .remindAt(785622L)
                                                                    .requestor(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                .suggestions(List.of(
                                                                                    QuerySuggestion.builder()
                                                                                        .query("app:github type:pull author:mortimer")
                                                                                        .label("Mortimer's PRs")
                                                                                        .datasource("github")
                                                                                        .build()))
                                                                                .build())
                                                                            .inviteInfo(InviteInfo.builder()
                                                                                .invites(List.of(
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build()))
                                                                                .build())
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .build(),
                                                                Reminder.builder()
                                                                    .assignee(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                .suggestions(List.of(
                                                                                    QuerySuggestion.builder()
                                                                                        .query("app:github type:pull author:mortimer")
                                                                                        .label("Mortimer's PRs")
                                                                                        .datasource("github")
                                                                                        .build()))
                                                                                .build())
                                                                            .inviteInfo(InviteInfo.builder()
                                                                                .invites(List.of(
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build()))
                                                                                .build())
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .remindAt(785622L)
                                                                    .requestor(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                .suggestions(List.of(
                                                                                    QuerySuggestion.builder()
                                                                                        .query("app:github type:pull author:mortimer")
                                                                                        .label("Mortimer's PRs")
                                                                                        .datasource("github")
                                                                                        .build()))
                                                                                .build())
                                                                            .inviteInfo(InviteInfo.builder()
                                                                                .invites(List.of(
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build()))
                                                                                .build())
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .build(),
                                                                Reminder.builder()
                                                                    .assignee(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                .suggestions(List.of(
                                                                                    QuerySuggestion.builder()
                                                                                        .query("app:github type:pull author:mortimer")
                                                                                        .label("Mortimer's PRs")
                                                                                        .datasource("github")
                                                                                        .build()))
                                                                                .build())
                                                                            .inviteInfo(InviteInfo.builder()
                                                                                .invites(List.of(
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build()))
                                                                                .build())
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .remindAt(785622L)
                                                                    .requestor(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                .suggestions(List.of(
                                                                                    QuerySuggestion.builder()
                                                                                        .query("app:github type:pull author:mortimer")
                                                                                        .label("Mortimer's PRs")
                                                                                        .datasource("github")
                                                                                        .build()))
                                                                                .build())
                                                                            .inviteInfo(InviteInfo.builder()
                                                                                .invites(List.of(
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build()))
                                                                                .build())
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .build()))
                                                            .lastReminder(Reminder.builder()
                                                                .assignee(Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .metadata(PersonMetadata.builder()
                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                        .title("Actor")
                                                                        .department("Movies")
                                                                        .email("george@example.com")
                                                                        .location("Hollywood, CA")
                                                                        .phone("6505551234")
                                                                        .photoUrl("https://example.com/george.jpg")
                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                        .datasourceProfile(List.of(
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build()))
                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                            .suggestions(List.of(
                                                                                QuerySuggestion.builder()
                                                                                    .query("app:github type:pull author:mortimer")
                                                                                    .label("Mortimer's PRs")
                                                                                    .datasource("github")
                                                                                    .build()))
                                                                            .build())
                                                                        .inviteInfo(InviteInfo.builder()
                                                                            .invites(List.of(
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build()))
                                                                            .build())
                                                                        .badges(List.of(
                                                                            Badge.builder()
                                                                                .key("deployment_name_new_hire")
                                                                                .displayName("New hire")
                                                                                .iconConfig(IconConfig.builder()
                                                                                    .color("#343CED")
                                                                                    .key("person_icon")
                                                                                    .iconType(IconType.GLYPH)
                                                                                    .name("user")
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build())
                                                                .remindAt(269943L)
                                                                .requestor(Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .metadata(PersonMetadata.builder()
                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                        .title("Actor")
                                                                        .department("Movies")
                                                                        .email("george@example.com")
                                                                        .location("Hollywood, CA")
                                                                        .phone("6505551234")
                                                                        .photoUrl("https://example.com/george.jpg")
                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                        .datasourceProfile(List.of(
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build()))
                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                            .suggestions(List.of(
                                                                                QuerySuggestion.builder()
                                                                                    .query("app:github type:pull author:mortimer")
                                                                                    .label("Mortimer's PRs")
                                                                                    .datasource("github")
                                                                                    .build()))
                                                                            .build())
                                                                        .inviteInfo(InviteInfo.builder()
                                                                            .invites(List.of(
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build()))
                                                                            .build())
                                                                        .badges(List.of(
                                                                            Badge.builder()
                                                                                .key("deployment_name_new_hire")
                                                                                .displayName("New hire")
                                                                                .iconConfig(IconConfig.builder()
                                                                                    .color("#343CED")
                                                                                    .key("person_icon")
                                                                                    .iconType(IconType.GLYPH)
                                                                                    .name("user")
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build())
                                                                .build())
                                                            .candidateVerifiers(List.of(
                                                                Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .build()))
                                                            .build())
                                                        .build())
                                                    .sourceDocument(Document.builder()
                                                        .metadata(DocumentMetadata.builder()
                                                            .datasource("datasource")
                                                            .objectType("Feature Request")
                                                            .container("container")
                                                            .parentId("JIRA_EN-1337")
                                                            .mimeType("mimeType")
                                                            .documentId("documentId")
                                                            .createTime(OffsetDateTime.parse("2000-01-23T04:56:07.000Z"))
                                                            .updateTime(OffsetDateTime.parse("2000-01-23T04:56:07.000Z"))
                                                            .author(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                        .suggestions(List.of(
                                                                            QuerySuggestion.builder()
                                                                                .query("app:github type:pull author:mortimer")
                                                                                .label("Mortimer's PRs")
                                                                                .datasource("github")
                                                                                .build()))
                                                                        .build())
                                                                    .inviteInfo(InviteInfo.builder()
                                                                        .invites(List.of(
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build()))
                                                                        .build())
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .owner(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                        .suggestions(List.of(
                                                                            QuerySuggestion.builder()
                                                                                .query("app:github type:pull author:mortimer")
                                                                                .label("Mortimer's PRs")
                                                                                .datasource("github")
                                                                                .build()))
                                                                        .build())
                                                                    .inviteInfo(InviteInfo.builder()
                                                                        .invites(List.of(
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build()))
                                                                        .build())
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .components(List.of(
                                                                "Backend",
                                                                "Networking"))
                                                            .status("[\"Done\"]")
                                                            .assignedTo(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                        .suggestions(List.of(
                                                                            QuerySuggestion.builder()
                                                                                .query("app:github type:pull author:mortimer")
                                                                                .label("Mortimer's PRs")
                                                                                .datasource("github")
                                                                                .build()))
                                                                        .build())
                                                                    .inviteInfo(InviteInfo.builder()
                                                                        .invites(List.of(
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build()))
                                                                        .build())
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .updatedBy(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                        .suggestions(List.of(
                                                                            QuerySuggestion.builder()
                                                                                .query("app:github type:pull author:mortimer")
                                                                                .label("Mortimer's PRs")
                                                                                .datasource("github")
                                                                                .build()))
                                                                        .build())
                                                                    .inviteInfo(InviteInfo.builder()
                                                                        .invites(List.of(
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build()))
                                                                        .build())
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .interactions(DocumentInteractions.builder()
                                                                .reacts(List.of(
                                                                    Reaction.builder()
                                                                        .reactors(List.of(
                                                                            Person.builder()
                                                                                .name("George Clooney")
                                                                                .obfuscatedId("abc123")
                                                                                .build()))
                                                                        .build(),
                                                                    Reaction.builder()
                                                                        .reactors(List.of(
                                                                            Person.builder()
                                                                                .name("George Clooney")
                                                                                .obfuscatedId("abc123")
                                                                                .build()))
                                                                        .build()))
                                                                .shares(List.of(
                                                                    Share.builder()
                                                                        .numDaysAgo(582012L)
                                                                        .sharer(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .build()))
                                                                .build())
                                                            .verification(Verification.builder()
                                                                .state(State.DEPRECATED)
                                                                .metadata(VerificationMetadata.builder()
                                                                    .lastVerifier(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                .suggestions(List.of(
                                                                                    QuerySuggestion.builder()
                                                                                        .query("app:github type:pull author:mortimer")
                                                                                        .label("Mortimer's PRs")
                                                                                        .datasource("github")
                                                                                        .build()))
                                                                                .build())
                                                                            .inviteInfo(InviteInfo.builder()
                                                                                .invites(List.of(
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build()))
                                                                                .build())
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .reminders(List.of(
                                                                        Reminder.builder()
                                                                            .assignee(Person.builder()
                                                                                .name("George Clooney")
                                                                                .obfuscatedId("abc123")
                                                                                .metadata(PersonMetadata.builder()
                                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                                    .title("Actor")
                                                                                    .department("Movies")
                                                                                    .email("george@example.com")
                                                                                    .location("Hollywood, CA")
                                                                                    .phone("6505551234")
                                                                                    .photoUrl("https://example.com/george.jpg")
                                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                                    .datasourceProfile(List.of(
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build(),
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build(),
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build()))
                                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                                        .suggestions(List.of(
                                                                                            QuerySuggestion.builder()
                                                                                                .query("app:github type:pull author:mortimer")
                                                                                                .label("Mortimer's PRs")
                                                                                                .datasource("github")
                                                                                                .build()))
                                                                                        .build())
                                                                                    .inviteInfo(InviteInfo.builder()
                                                                                        .invites(List.of(
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build()))
                                                                                        .build())
                                                                                    .badges(List.of(
                                                                                        Badge.builder()
                                                                                            .key("deployment_name_new_hire")
                                                                                            .displayName("New hire")
                                                                                            .iconConfig(IconConfig.builder()
                                                                                                .color("#343CED")
                                                                                                .key("person_icon")
                                                                                                .iconType(IconType.GLYPH)
                                                                                                .name("user")
                                                                                                .build())
                                                                                            .build()))
                                                                                    .build())
                                                                                .build())
                                                                            .remindAt(785622L)
                                                                            .requestor(Person.builder()
                                                                                .name("George Clooney")
                                                                                .obfuscatedId("abc123")
                                                                                .metadata(PersonMetadata.builder()
                                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                                    .title("Actor")
                                                                                    .department("Movies")
                                                                                    .email("george@example.com")
                                                                                    .location("Hollywood, CA")
                                                                                    .phone("6505551234")
                                                                                    .photoUrl("https://example.com/george.jpg")
                                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                                    .datasourceProfile(List.of(
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build(),
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build()))
                                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                                        .suggestions(List.of(
                                                                                            QuerySuggestion.builder()
                                                                                                .query("app:github type:pull author:mortimer")
                                                                                                .label("Mortimer's PRs")
                                                                                                .datasource("github")
                                                                                                .build()))
                                                                                        .build())
                                                                                    .inviteInfo(InviteInfo.builder()
                                                                                        .invites(List.of(
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build()))
                                                                                        .build())
                                                                                    .badges(List.of(
                                                                                        Badge.builder()
                                                                                            .key("deployment_name_new_hire")
                                                                                            .displayName("New hire")
                                                                                            .iconConfig(IconConfig.builder()
                                                                                                .color("#343CED")
                                                                                                .key("person_icon")
                                                                                                .iconType(IconType.GLYPH)
                                                                                                .name("user")
                                                                                                .build())
                                                                                            .build()))
                                                                                    .build())
                                                                                .build())
                                                                            .build(),
                                                                        Reminder.builder()
                                                                            .assignee(Person.builder()
                                                                                .name("George Clooney")
                                                                                .obfuscatedId("abc123")
                                                                                .metadata(PersonMetadata.builder()
                                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                                    .title("Actor")
                                                                                    .department("Movies")
                                                                                    .email("george@example.com")
                                                                                    .location("Hollywood, CA")
                                                                                    .phone("6505551234")
                                                                                    .photoUrl("https://example.com/george.jpg")
                                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                                    .datasourceProfile(List.of(
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build(),
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build(),
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build()))
                                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                                        .suggestions(List.of(
                                                                                            QuerySuggestion.builder()
                                                                                                .query("app:github type:pull author:mortimer")
                                                                                                .label("Mortimer's PRs")
                                                                                                .datasource("github")
                                                                                                .build()))
                                                                                        .build())
                                                                                    .inviteInfo(InviteInfo.builder()
                                                                                        .invites(List.of(
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build()))
                                                                                        .build())
                                                                                    .badges(List.of(
                                                                                        Badge.builder()
                                                                                            .key("deployment_name_new_hire")
                                                                                            .displayName("New hire")
                                                                                            .iconConfig(IconConfig.builder()
                                                                                                .color("#343CED")
                                                                                                .key("person_icon")
                                                                                                .iconType(IconType.GLYPH)
                                                                                                .name("user")
                                                                                                .build())
                                                                                            .build()))
                                                                                    .build())
                                                                                .build())
                                                                            .remindAt(785622L)
                                                                            .requestor(Person.builder()
                                                                                .name("George Clooney")
                                                                                .obfuscatedId("abc123")
                                                                                .metadata(PersonMetadata.builder()
                                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                                    .title("Actor")
                                                                                    .department("Movies")
                                                                                    .email("george@example.com")
                                                                                    .location("Hollywood, CA")
                                                                                    .phone("6505551234")
                                                                                    .photoUrl("https://example.com/george.jpg")
                                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                                    .datasourceProfile(List.of(
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build(),
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build()))
                                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                                        .suggestions(List.of(
                                                                                            QuerySuggestion.builder()
                                                                                                .query("app:github type:pull author:mortimer")
                                                                                                .label("Mortimer's PRs")
                                                                                                .datasource("github")
                                                                                                .build()))
                                                                                        .build())
                                                                                    .inviteInfo(InviteInfo.builder()
                                                                                        .invites(List.of(
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build()))
                                                                                        .build())
                                                                                    .badges(List.of(
                                                                                        Badge.builder()
                                                                                            .key("deployment_name_new_hire")
                                                                                            .displayName("New hire")
                                                                                            .iconConfig(IconConfig.builder()
                                                                                                .color("#343CED")
                                                                                                .key("person_icon")
                                                                                                .iconType(IconType.GLYPH)
                                                                                                .name("user")
                                                                                                .build())
                                                                                            .build()))
                                                                                    .build())
                                                                                .build())
                                                                            .build(),
                                                                        Reminder.builder()
                                                                            .assignee(Person.builder()
                                                                                .name("George Clooney")
                                                                                .obfuscatedId("abc123")
                                                                                .metadata(PersonMetadata.builder()
                                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                                    .title("Actor")
                                                                                    .department("Movies")
                                                                                    .email("george@example.com")
                                                                                    .location("Hollywood, CA")
                                                                                    .phone("6505551234")
                                                                                    .photoUrl("https://example.com/george.jpg")
                                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                                    .datasourceProfile(List.of(
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build(),
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build(),
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build()))
                                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                                        .suggestions(List.of(
                                                                                            QuerySuggestion.builder()
                                                                                                .query("app:github type:pull author:mortimer")
                                                                                                .label("Mortimer's PRs")
                                                                                                .datasource("github")
                                                                                                .build()))
                                                                                        .build())
                                                                                    .inviteInfo(InviteInfo.builder()
                                                                                        .invites(List.of(
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build()))
                                                                                        .build())
                                                                                    .badges(List.of(
                                                                                        Badge.builder()
                                                                                            .key("deployment_name_new_hire")
                                                                                            .displayName("New hire")
                                                                                            .iconConfig(IconConfig.builder()
                                                                                                .color("#343CED")
                                                                                                .key("person_icon")
                                                                                                .iconType(IconType.GLYPH)
                                                                                                .name("user")
                                                                                                .build())
                                                                                            .build()))
                                                                                    .build())
                                                                                .build())
                                                                            .remindAt(785622L)
                                                                            .requestor(Person.builder()
                                                                                .name("George Clooney")
                                                                                .obfuscatedId("abc123")
                                                                                .metadata(PersonMetadata.builder()
                                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                                    .title("Actor")
                                                                                    .department("Movies")
                                                                                    .email("george@example.com")
                                                                                    .location("Hollywood, CA")
                                                                                    .phone("6505551234")
                                                                                    .photoUrl("https://example.com/george.jpg")
                                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                                    .datasourceProfile(List.of(
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build(),
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build()))
                                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                                        .suggestions(List.of(
                                                                                            QuerySuggestion.builder()
                                                                                                .query("app:github type:pull author:mortimer")
                                                                                                .label("Mortimer's PRs")
                                                                                                .datasource("github")
                                                                                                .build()))
                                                                                        .build())
                                                                                    .inviteInfo(InviteInfo.builder()
                                                                                        .invites(List.of(
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build()))
                                                                                        .build())
                                                                                    .badges(List.of(
                                                                                        Badge.builder()
                                                                                            .key("deployment_name_new_hire")
                                                                                            .displayName("New hire")
                                                                                            .iconConfig(IconConfig.builder()
                                                                                                .color("#343CED")
                                                                                                .key("person_icon")
                                                                                                .iconType(IconType.GLYPH)
                                                                                                .name("user")
                                                                                                .build())
                                                                                            .build()))
                                                                                    .build())
                                                                                .build())
                                                                            .build()))
                                                                    .lastReminder(Reminder.builder()
                                                                        .assignee(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .remindAt(269943L)
                                                                        .requestor(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .build())
                                                                    .candidateVerifiers(List.of(
                                                                        Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .customData(Map.ofEntries(
                                                                Map.entry("someCustomField", CustomDataValue.builder()
                                                                    .build())))
                                                            .contactPerson(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                        .suggestions(List.of(
                                                                            QuerySuggestion.builder()
                                                                                .query("app:github type:pull author:mortimer")
                                                                                .label("Mortimer's PRs")
                                                                                .datasource("github")
                                                                                .build()))
                                                                        .build())
                                                                    .inviteInfo(InviteInfo.builder()
                                                                        .invites(List.of(
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build()))
                                                                        .build())
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .build())
                                                        .build())
                                                    .build())
                                                .extractedQnA(ExtractedQnA.builder()
                                                    .questionResult(SearchResult.builder()
                                                        .url("https://example.com/foo/bar")
                                                        .document(Document.builder()
                                                            .metadata(DocumentMetadata.builder()
                                                                .datasource("datasource")
                                                                .objectType("Feature Request")
                                                                .container("container")
                                                                .parentId("JIRA_EN-1337")
                                                                .mimeType("mimeType")
                                                                .documentId("documentId")
                                                                .createTime(OffsetDateTime.parse("2000-01-23T04:56:07.000Z"))
                                                                .updateTime(OffsetDateTime.parse("2000-01-23T04:56:07.000Z"))
                                                                .author(Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .relatedDocuments(List.of(
                                                                        RelatedDocuments.builder()
                                                                            .querySuggestion(QuerySuggestion.builder()
                                                                                .query("app:github type:pull author:mortimer")
                                                                                .searchProviderInfo(SearchProviderInfo.builder()
                                                                                    .name("Google")
                                                                                    .searchLinkUrlTemplate("https://www.google.com/search?q={query}&hl=en")
                                                                                    .build())
                                                                                .label("Mortimer's PRs")
                                                                                .datasource("github")
                                                                                .requestOptions(SearchRequestOptions.builder()
                                                                                    .facetBucketSize(843281L)
                                                                                    .datasourceFilter("JIRA")
                                                                                    .datasourcesFilter(List.of(
                                                                                        "JIRA"))
                                                                                    .queryOverridesFacetFilters(true)
                                                                                    .facetFilters(List.of(
                                                                                        FacetFilter.builder()
                                                                                            .fieldName("type")
                                                                                            .values(List.of(
                                                                                                FacetFilterValue.builder()
                                                                                                    .value("Spreadsheet")
                                                                                                    .relationType(RelationType.EQUALS)
                                                                                                    .build(),
                                                                                                FacetFilterValue.builder()
                                                                                                    .value("Presentation")
                                                                                                    .relationType(RelationType.EQUALS)
                                                                                                    .build()))
                                                                                            .build()))
                                                                                    .facetFilterSets(List.of(
                                                                                        FacetFilterSet.builder()
                                                                                            .filters(List.of(
                                                                                                FacetFilter.builder()
                                                                                                    .fieldName("type")
                                                                                                    .values(List.of(
                                                                                                        FacetFilterValue.builder()
                                                                                                            .value("Spreadsheet")
                                                                                                            .relationType(RelationType.EQUALS)
                                                                                                            .build(),
                                                                                                        FacetFilterValue.builder()
                                                                                                            .value("Presentation")
                                                                                                            .relationType(RelationType.EQUALS)
                                                                                                            .build()))
                                                                                                    .build()))
                                                                                            .build(),
                                                                                        FacetFilterSet.builder()
                                                                                            .filters(List.of(
                                                                                                FacetFilter.builder()
                                                                                                    .fieldName("type")
                                                                                                    .values(List.of(
                                                                                                        FacetFilterValue.builder()
                                                                                                            .value("Spreadsheet")
                                                                                                            .relationType(RelationType.EQUALS)
                                                                                                            .build(),
                                                                                                        FacetFilterValue.builder()
                                                                                                            .value("Presentation")
                                                                                                            .relationType(RelationType.EQUALS)
                                                                                                            .build()))
                                                                                                    .build()))
                                                                                            .build()))
                                                                                    .authTokens(List.of(
                                                                                        AuthToken.builder()
                                                                                            .accessToken("123abc")
                                                                                            .datasource("gmail")
                                                                                            .scope("email profile https://www.googleapis.com/auth/gmail.readonly")
                                                                                            .tokenType("Bearer")
                                                                                            .authUser("1")
                                                                                            .build()))
                                                                                    .build())
                                                                                .ranges(List.of(
                                                                                    TextRange.builder()
                                                                                        .startIndex(925801L)
                                                                                        .build(),
                                                                                    TextRange.builder()
                                                                                        .startIndex(925801L)
                                                                                        .build(),
                                                                                    TextRange.builder()
                                                                                        .startIndex(925801L)
                                                                                        .build()))
                                                                                .inputDetails(SearchRequestInputDetails.builder()
                                                                                    .hasCopyPaste(true)
                                                                                    .build())
                                                                                .build())
                                                                            .build(),
                                                                        RelatedDocuments.builder()
                                                                            .querySuggestion(QuerySuggestion.builder()
                                                                                .query("app:github type:pull author:mortimer")
                                                                                .searchProviderInfo(SearchProviderInfo.builder()
                                                                                    .name("Google")
                                                                                    .searchLinkUrlTemplate("https://www.google.com/search?q={query}&hl=en")
                                                                                    .build())
                                                                                .label("Mortimer's PRs")
                                                                                .datasource("github")
                                                                                .requestOptions(SearchRequestOptions.builder()
                                                                                    .facetBucketSize(843281L)
                                                                                    .datasourceFilter("JIRA")
                                                                                    .datasourcesFilter(List.of(
                                                                                        "JIRA"))
                                                                                    .queryOverridesFacetFilters(true)
                                                                                    .facetFilters(List.of(
                                                                                        FacetFilter.builder()
                                                                                            .fieldName("type")
                                                                                            .values(List.of(
                                                                                                FacetFilterValue.builder()
                                                                                                    .value("Spreadsheet")
                                                                                                    .relationType(RelationType.EQUALS)
                                                                                                    .build(),
                                                                                                FacetFilterValue.builder()
                                                                                                    .value("Presentation")
                                                                                                    .relationType(RelationType.EQUALS)
                                                                                                    .build()))
                                                                                            .build()))
                                                                                    .facetFilterSets(List.of(
                                                                                        FacetFilterSet.builder()
                                                                                            .filters(List.of(
                                                                                                FacetFilter.builder()
                                                                                                    .fieldName("type")
                                                                                                    .values(List.of(
                                                                                                        FacetFilterValue.builder()
                                                                                                            .value("Spreadsheet")
                                                                                                            .relationType(RelationType.EQUALS)
                                                                                                            .build(),
                                                                                                        FacetFilterValue.builder()
                                                                                                            .value("Presentation")
                                                                                                            .relationType(RelationType.EQUALS)
                                                                                                            .build()))
                                                                                                    .build()))
                                                                                            .build(),
                                                                                        FacetFilterSet.builder()
                                                                                            .filters(List.of(
                                                                                                FacetFilter.builder()
                                                                                                    .fieldName("type")
                                                                                                    .values(List.of(
                                                                                                        FacetFilterValue.builder()
                                                                                                            .value("Spreadsheet")
                                                                                                            .relationType(RelationType.EQUALS)
                                                                                                            .build(),
                                                                                                        FacetFilterValue.builder()
                                                                                                            .value("Presentation")
                                                                                                            .relationType(RelationType.EQUALS)
                                                                                                            .build()))
                                                                                                    .build()))
                                                                                            .build()))
                                                                                    .authTokens(List.of(
                                                                                        AuthToken.builder()
                                                                                            .accessToken("123abc")
                                                                                            .datasource("gmail")
                                                                                            .scope("email profile https://www.googleapis.com/auth/gmail.readonly")
                                                                                            .tokenType("Bearer")
                                                                                            .authUser("1")
                                                                                            .build()))
                                                                                    .build())
                                                                                .ranges(List.of(
                                                                                    TextRange.builder()
                                                                                        .startIndex(925801L)
                                                                                        .build(),
                                                                                    TextRange.builder()
                                                                                        .startIndex(925801L)
                                                                                        .build(),
                                                                                    TextRange.builder()
                                                                                        .startIndex(925801L)
                                                                                        .build()))
                                                                                .inputDetails(SearchRequestInputDetails.builder()
                                                                                    .hasCopyPaste(true)
                                                                                    .build())
                                                                                .build())
                                                                            .build(),
                                                                        RelatedDocuments.builder()
                                                                            .querySuggestion(QuerySuggestion.builder()
                                                                                .query("app:github type:pull author:mortimer")
                                                                                .searchProviderInfo(SearchProviderInfo.builder()
                                                                                    .name("Google")
                                                                                    .searchLinkUrlTemplate("https://www.google.com/search?q={query}&hl=en")
                                                                                    .build())
                                                                                .label("Mortimer's PRs")
                                                                                .datasource("github")
                                                                                .requestOptions(SearchRequestOptions.builder()
                                                                                    .facetBucketSize(843281L)
                                                                                    .datasourceFilter("JIRA")
                                                                                    .datasourcesFilter(List.of(
                                                                                        "JIRA"))
                                                                                    .queryOverridesFacetFilters(true)
                                                                                    .facetFilters(List.of(
                                                                                        FacetFilter.builder()
                                                                                            .fieldName("type")
                                                                                            .values(List.of(
                                                                                                FacetFilterValue.builder()
                                                                                                    .value("Spreadsheet")
                                                                                                    .relationType(RelationType.EQUALS)
                                                                                                    .build(),
                                                                                                FacetFilterValue.builder()
                                                                                                    .value("Presentation")
                                                                                                    .relationType(RelationType.EQUALS)
                                                                                                    .build()))
                                                                                            .build()))
                                                                                    .facetFilterSets(List.of(
                                                                                        FacetFilterSet.builder()
                                                                                            .filters(List.of(
                                                                                                FacetFilter.builder()
                                                                                                    .fieldName("type")
                                                                                                    .values(List.of(
                                                                                                        FacetFilterValue.builder()
                                                                                                            .value("Spreadsheet")
                                                                                                            .relationType(RelationType.EQUALS)
                                                                                                            .build(),
                                                                                                        FacetFilterValue.builder()
                                                                                                            .value("Presentation")
                                                                                                            .relationType(RelationType.EQUALS)
                                                                                                            .build()))
                                                                                                    .build()))
                                                                                            .build(),
                                                                                        FacetFilterSet.builder()
                                                                                            .filters(List.of(
                                                                                                FacetFilter.builder()
                                                                                                    .fieldName("type")
                                                                                                    .values(List.of(
                                                                                                        FacetFilterValue.builder()
                                                                                                            .value("Spreadsheet")
                                                                                                            .relationType(RelationType.EQUALS)
                                                                                                            .build(),
                                                                                                        FacetFilterValue.builder()
                                                                                                            .value("Presentation")
                                                                                                            .relationType(RelationType.EQUALS)
                                                                                                            .build()))
                                                                                                    .build()))
                                                                                            .build()))
                                                                                    .authTokens(List.of(
                                                                                        AuthToken.builder()
                                                                                            .accessToken("123abc")
                                                                                            .datasource("gmail")
                                                                                            .scope("email profile https://www.googleapis.com/auth/gmail.readonly")
                                                                                            .tokenType("Bearer")
                                                                                            .authUser("1")
                                                                                            .build()))
                                                                                    .build())
                                                                                .ranges(List.of(
                                                                                    TextRange.builder()
                                                                                        .startIndex(925801L)
                                                                                        .build(),
                                                                                    TextRange.builder()
                                                                                        .startIndex(925801L)
                                                                                        .build(),
                                                                                    TextRange.builder()
                                                                                        .startIndex(925801L)
                                                                                        .build()))
                                                                                .inputDetails(SearchRequestInputDetails.builder()
                                                                                    .hasCopyPaste(true)
                                                                                    .build())
                                                                                .build())
                                                                            .build()))
                                                                    .metadata(PersonMetadata.builder()
                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                        .title("Actor")
                                                                        .department("Movies")
                                                                        .email("george@example.com")
                                                                        .location("Hollywood, CA")
                                                                        .phone("6505551234")
                                                                        .photoUrl("https://example.com/george.jpg")
                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                        .datasourceProfile(List.of(
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build()))
                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                            .suggestions(List.of(
                                                                                QuerySuggestion.builder()
                                                                                    .query("app:github type:pull author:mortimer")
                                                                                    .label("Mortimer's PRs")
                                                                                    .datasource("github")
                                                                                    .build()))
                                                                            .build())
                                                                        .inviteInfo(InviteInfo.builder()
                                                                            .invites(List.of(
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build()))
                                                                            .build())
                                                                        .customFields(List.of(
                                                                            CustomFieldData.builder()
                                                                                .label("<value>")
                                                                                .values(List.of(
                                                                                    CustomFieldValue.of(CustomFieldValueStr.builder()
                                                                                        .build()),
                                                                                    CustomFieldValue.of(CustomFieldValueStr.builder()
                                                                                        .build())))
                                                                                .build(),
                                                                            CustomFieldData.builder()
                                                                                .label("<value>")
                                                                                .values(List.of(
                                                                                    CustomFieldValue.of(CustomFieldValueStr.builder()
                                                                                        .build()),
                                                                                    CustomFieldValue.of(CustomFieldValueStr.builder()
                                                                                        .build())))
                                                                                .build(),
                                                                            CustomFieldData.builder()
                                                                                .label("<value>")
                                                                                .values(List.of(
                                                                                    CustomFieldValue.of(CustomFieldValueStr.builder()
                                                                                        .build()),
                                                                                    CustomFieldValue.of(CustomFieldValueStr.builder()
                                                                                        .build())))
                                                                                .build()))
                                                                        .badges(List.of(
                                                                            Badge.builder()
                                                                                .key("deployment_name_new_hire")
                                                                                .displayName("New hire")
                                                                                .iconConfig(IconConfig.builder()
                                                                                    .color("#343CED")
                                                                                    .key("person_icon")
                                                                                    .iconType(IconType.GLYPH)
                                                                                    .name("user")
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build())
                                                                .owner(Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .metadata(PersonMetadata.builder()
                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                        .title("Actor")
                                                                        .department("Movies")
                                                                        .email("george@example.com")
                                                                        .location("Hollywood, CA")
                                                                        .phone("6505551234")
                                                                        .photoUrl("https://example.com/george.jpg")
                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                        .datasourceProfile(List.of(
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build()))
                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                            .suggestions(List.of(
                                                                                QuerySuggestion.builder()
                                                                                    .query("app:github type:pull author:mortimer")
                                                                                    .label("Mortimer's PRs")
                                                                                    .datasource("github")
                                                                                    .build()))
                                                                            .build())
                                                                        .inviteInfo(InviteInfo.builder()
                                                                            .invites(List.of(
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build()))
                                                                            .build())
                                                                        .badges(List.of(
                                                                            Badge.builder()
                                                                                .key("deployment_name_new_hire")
                                                                                .displayName("New hire")
                                                                                .iconConfig(IconConfig.builder()
                                                                                    .color("#343CED")
                                                                                    .key("person_icon")
                                                                                    .iconType(IconType.GLYPH)
                                                                                    .name("user")
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build())
                                                                .mentionedPeople(List.of(
                                                                    Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .build()))
                                                                .components(List.of(
                                                                    "Backend",
                                                                    "Networking"))
                                                                .status("[\"Done\"]")
                                                                .pins(List.of(
                                                                    PinDocument.builder()
                                                                        .documentId("<id>")
                                                                        .audienceFilters(List.of(
                                                                            FacetFilter.builder()
                                                                                .fieldName("type")
                                                                                .values(List.of(
                                                                                    FacetFilterValue.builder()
                                                                                        .value("Spreadsheet")
                                                                                        .relationType(RelationType.EQUALS)
                                                                                        .build(),
                                                                                    FacetFilterValue.builder()
                                                                                        .value("Presentation")
                                                                                        .relationType(RelationType.EQUALS)
                                                                                        .build()))
                                                                                .build()))
                                                                        .attribution(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .updatedBy(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .build(),
                                                                    PinDocument.builder()
                                                                        .documentId("<id>")
                                                                        .audienceFilters(List.of(
                                                                            FacetFilter.builder()
                                                                                .fieldName("type")
                                                                                .values(List.of(
                                                                                    FacetFilterValue.builder()
                                                                                        .value("Spreadsheet")
                                                                                        .relationType(RelationType.EQUALS)
                                                                                        .build(),
                                                                                    FacetFilterValue.builder()
                                                                                        .value("Presentation")
                                                                                        .relationType(RelationType.EQUALS)
                                                                                        .build()))
                                                                                .build()))
                                                                        .attribution(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .updatedBy(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .build()))
                                                                .assignedTo(Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .metadata(PersonMetadata.builder()
                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                        .title("Actor")
                                                                        .department("Movies")
                                                                        .email("george@example.com")
                                                                        .location("Hollywood, CA")
                                                                        .phone("6505551234")
                                                                        .photoUrl("https://example.com/george.jpg")
                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                        .datasourceProfile(List.of(
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build()))
                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                            .suggestions(List.of(
                                                                                QuerySuggestion.builder()
                                                                                    .query("app:github type:pull author:mortimer")
                                                                                    .label("Mortimer's PRs")
                                                                                    .datasource("github")
                                                                                    .build()))
                                                                            .build())
                                                                        .inviteInfo(InviteInfo.builder()
                                                                            .invites(List.of(
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build()))
                                                                            .build())
                                                                        .badges(List.of(
                                                                            Badge.builder()
                                                                                .key("deployment_name_new_hire")
                                                                                .displayName("New hire")
                                                                                .iconConfig(IconConfig.builder()
                                                                                    .color("#343CED")
                                                                                    .key("person_icon")
                                                                                    .iconType(IconType.GLYPH)
                                                                                    .name("user")
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build())
                                                                .updatedBy(Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .metadata(PersonMetadata.builder()
                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                        .title("Actor")
                                                                        .department("Movies")
                                                                        .email("george@example.com")
                                                                        .location("Hollywood, CA")
                                                                        .phone("6505551234")
                                                                        .photoUrl("https://example.com/george.jpg")
                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                        .datasourceProfile(List.of(
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build()))
                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                            .suggestions(List.of(
                                                                                QuerySuggestion.builder()
                                                                                    .query("app:github type:pull author:mortimer")
                                                                                    .label("Mortimer's PRs")
                                                                                    .datasource("github")
                                                                                    .build()))
                                                                            .build())
                                                                        .inviteInfo(InviteInfo.builder()
                                                                            .invites(List.of(
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build()))
                                                                            .build())
                                                                        .badges(List.of(
                                                                            Badge.builder()
                                                                                .key("deployment_name_new_hire")
                                                                                .displayName("New hire")
                                                                                .iconConfig(IconConfig.builder()
                                                                                    .color("#343CED")
                                                                                    .key("person_icon")
                                                                                    .iconType(IconType.GLYPH)
                                                                                    .name("user")
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build())
                                                                .collections(List.of(
                                                                    Collection.builder()
                                                                        .name("<value>")
                                                                        .description("perfectly flustered dimly")
                                                                        .id(83242L)
                                                                        .addedRoles(List.of(
                                                                            UserRoleSpecification.builder()
                                                                                .role(UserRole.ANSWER_MODERATOR)
                                                                                .person(Person.builder()
                                                                                    .name("George Clooney")
                                                                                    .obfuscatedId("abc123")
                                                                                    .metadata(PersonMetadata.builder()
                                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                                        .title("Actor")
                                                                                        .department("Movies")
                                                                                        .email("george@example.com")
                                                                                        .location("Hollywood, CA")
                                                                                        .phone("6505551234")
                                                                                        .photoUrl("https://example.com/george.jpg")
                                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                                        .datasourceProfile(List.of(
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build(),
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build()))
                                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                                            .suggestions(List.of(
                                                                                                QuerySuggestion.builder()
                                                                                                    .query("app:github type:pull author:mortimer")
                                                                                                    .label("Mortimer's PRs")
                                                                                                    .datasource("github")
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .inviteInfo(InviteInfo.builder()
                                                                                            .invites(List.of(
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .badges(List.of(
                                                                                            Badge.builder()
                                                                                                .key("deployment_name_new_hire")
                                                                                                .displayName("New hire")
                                                                                                .iconConfig(IconConfig.builder()
                                                                                                    .color("#343CED")
                                                                                                    .key("person_icon")
                                                                                                    .iconType(IconType.GLYPH)
                                                                                                    .name("user")
                                                                                                    .build())
                                                                                                .build()))
                                                                                        .build())
                                                                                    .build())
                                                                                .build(),
                                                                            UserRoleSpecification.builder()
                                                                                .role(UserRole.ANSWER_MODERATOR)
                                                                                .person(Person.builder()
                                                                                    .name("George Clooney")
                                                                                    .obfuscatedId("abc123")
                                                                                    .metadata(PersonMetadata.builder()
                                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                                        .title("Actor")
                                                                                        .department("Movies")
                                                                                        .email("george@example.com")
                                                                                        .location("Hollywood, CA")
                                                                                        .phone("6505551234")
                                                                                        .photoUrl("https://example.com/george.jpg")
                                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                                        .datasourceProfile(List.of(
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build(),
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build()))
                                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                                            .suggestions(List.of(
                                                                                                QuerySuggestion.builder()
                                                                                                    .query("app:github type:pull author:mortimer")
                                                                                                    .label("Mortimer's PRs")
                                                                                                    .datasource("github")
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .inviteInfo(InviteInfo.builder()
                                                                                            .invites(List.of(
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .badges(List.of(
                                                                                            Badge.builder()
                                                                                                .key("deployment_name_new_hire")
                                                                                                .displayName("New hire")
                                                                                                .iconConfig(IconConfig.builder()
                                                                                                    .color("#343CED")
                                                                                                    .key("person_icon")
                                                                                                    .iconType(IconType.GLYPH)
                                                                                                    .name("user")
                                                                                                    .build())
                                                                                                .build()))
                                                                                        .build())
                                                                                    .build())
                                                                                .build(),
                                                                            UserRoleSpecification.builder()
                                                                                .role(UserRole.ANSWER_MODERATOR)
                                                                                .person(Person.builder()
                                                                                    .name("George Clooney")
                                                                                    .obfuscatedId("abc123")
                                                                                    .metadata(PersonMetadata.builder()
                                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                                        .title("Actor")
                                                                                        .department("Movies")
                                                                                        .email("george@example.com")
                                                                                        .location("Hollywood, CA")
                                                                                        .phone("6505551234")
                                                                                        .photoUrl("https://example.com/george.jpg")
                                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                                        .datasourceProfile(List.of(
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build(),
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build()))
                                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                                            .suggestions(List.of(
                                                                                                QuerySuggestion.builder()
                                                                                                    .query("app:github type:pull author:mortimer")
                                                                                                    .label("Mortimer's PRs")
                                                                                                    .datasource("github")
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .inviteInfo(InviteInfo.builder()
                                                                                            .invites(List.of(
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .badges(List.of(
                                                                                            Badge.builder()
                                                                                                .key("deployment_name_new_hire")
                                                                                                .displayName("New hire")
                                                                                                .iconConfig(IconConfig.builder()
                                                                                                    .color("#343CED")
                                                                                                    .key("person_icon")
                                                                                                    .iconType(IconType.GLYPH)
                                                                                                    .name("user")
                                                                                                    .build())
                                                                                                .build()))
                                                                                        .build())
                                                                                    .build())
                                                                                .build()))
                                                                        .removedRoles(List.of(
                                                                            UserRoleSpecification.builder()
                                                                                .role(UserRole.VERIFIER)
                                                                                .person(Person.builder()
                                                                                    .name("George Clooney")
                                                                                    .obfuscatedId("abc123")
                                                                                    .metadata(PersonMetadata.builder()
                                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                                        .title("Actor")
                                                                                        .department("Movies")
                                                                                        .email("george@example.com")
                                                                                        .location("Hollywood, CA")
                                                                                        .phone("6505551234")
                                                                                        .photoUrl("https://example.com/george.jpg")
                                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                                        .datasourceProfile(List.of(
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build(),
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build(),
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build()))
                                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                                            .suggestions(List.of(
                                                                                                QuerySuggestion.builder()
                                                                                                    .query("app:github type:pull author:mortimer")
                                                                                                    .label("Mortimer's PRs")
                                                                                                    .datasource("github")
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .inviteInfo(InviteInfo.builder()
                                                                                            .invites(List.of(
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .badges(List.of(
                                                                                            Badge.builder()
                                                                                                .key("deployment_name_new_hire")
                                                                                                .displayName("New hire")
                                                                                                .iconConfig(IconConfig.builder()
                                                                                                    .color("#343CED")
                                                                                                    .key("person_icon")
                                                                                                    .iconType(IconType.GLYPH)
                                                                                                    .name("user")
                                                                                                    .build())
                                                                                                .build()))
                                                                                        .build())
                                                                                    .build())
                                                                                .build()))
                                                                        .audienceFilters(List.of(
                                                                            FacetFilter.builder()
                                                                                .fieldName("type")
                                                                                .values(List.of(
                                                                                    FacetFilterValue.builder()
                                                                                        .value("Spreadsheet")
                                                                                        .relationType(RelationType.EQUALS)
                                                                                        .build(),
                                                                                    FacetFilterValue.builder()
                                                                                        .value("Presentation")
                                                                                        .relationType(RelationType.EQUALS)
                                                                                        .build()))
                                                                                .build()))
                                                                        .creator(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .updatedBy(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .items(List.of(
                                                                            CollectionItem.builder()
                                                                                .collectionId(420359L)
                                                                                .itemType(CollectionItemItemType.COLLECTION)
                                                                                .createdBy(Person.builder()
                                                                                    .name("George Clooney")
                                                                                    .obfuscatedId("abc123")
                                                                                    .metadata(PersonMetadata.builder()
                                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                                        .title("Actor")
                                                                                        .department("Movies")
                                                                                        .email("george@example.com")
                                                                                        .location("Hollywood, CA")
                                                                                        .phone("6505551234")
                                                                                        .photoUrl("https://example.com/george.jpg")
                                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                                        .datasourceProfile(List.of(
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build(),
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build(),
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build()))
                                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                                            .suggestions(List.of(
                                                                                                QuerySuggestion.builder()
                                                                                                    .query("app:github type:pull author:mortimer")
                                                                                                    .label("Mortimer's PRs")
                                                                                                    .datasource("github")
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .inviteInfo(InviteInfo.builder()
                                                                                            .invites(List.of(
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .badges(List.of(
                                                                                            Badge.builder()
                                                                                                .key("deployment_name_new_hire")
                                                                                                .displayName("New hire")
                                                                                                .iconConfig(IconConfig.builder()
                                                                                                    .color("#343CED")
                                                                                                    .key("person_icon")
                                                                                                    .iconType(IconType.GLYPH)
                                                                                                    .name("user")
                                                                                                    .build())
                                                                                                .build()))
                                                                                        .build())
                                                                                    .build())
                                                                                .shortcut(Shortcut.builder()
                                                                                    .inputAlias("<value>")
                                                                                    .createdBy(Person.builder()
                                                                                        .name("George Clooney")
                                                                                        .obfuscatedId("abc123")
                                                                                        .metadata(PersonMetadata.builder()
                                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                                            .title("Actor")
                                                                                            .department("Movies")
                                                                                            .email("george@example.com")
                                                                                            .location("Hollywood, CA")
                                                                                            .phone("6505551234")
                                                                                            .photoUrl("https://example.com/george.jpg")
                                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                                            .datasourceProfile(List.of(
                                                                                                DatasourceProfile.builder()
                                                                                                    .datasource("github")
                                                                                                    .handle("<value>")
                                                                                                    .build(),
                                                                                                DatasourceProfile.builder()
                                                                                                    .datasource("github")
                                                                                                    .handle("<value>")
                                                                                                    .build(),
                                                                                                DatasourceProfile.builder()
                                                                                                    .datasource("github")
                                                                                                    .handle("<value>")
                                                                                                    .build()))
                                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                                .suggestions(List.of(
                                                                                                    QuerySuggestion.builder()
                                                                                                        .query("app:github type:pull author:mortimer")
                                                                                                        .label("Mortimer's PRs")
                                                                                                        .datasource("github")
                                                                                                        .build()))
                                                                                                .build())
                                                                                            .inviteInfo(InviteInfo.builder()
                                                                                                .invites(List.of(
                                                                                                    ChannelInviteInfo.builder()
                                                                                                        .build(),
                                                                                                    ChannelInviteInfo.builder()
                                                                                                        .build(),
                                                                                                    ChannelInviteInfo.builder()
                                                                                                        .build()))
                                                                                                .build())
                                                                                            .badges(List.of(
                                                                                                Badge.builder()
                                                                                                    .key("deployment_name_new_hire")
                                                                                                    .displayName("New hire")
                                                                                                    .iconConfig(IconConfig.builder()
                                                                                                        .color("#343CED")
                                                                                                        .key("person_icon")
                                                                                                        .iconType(IconType.GLYPH)
                                                                                                        .name("user")
                                                                                                        .build())
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .build())
                                                                                    .updatedBy(Person.builder()
                                                                                        .name("George Clooney")
                                                                                        .obfuscatedId("abc123")
                                                                                        .metadata(PersonMetadata.builder()
                                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                                            .title("Actor")
                                                                                            .department("Movies")
                                                                                            .email("george@example.com")
                                                                                            .location("Hollywood, CA")
                                                                                            .phone("6505551234")
                                                                                            .photoUrl("https://example.com/george.jpg")
                                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                                            .datasourceProfile(List.of(
                                                                                                DatasourceProfile.builder()
                                                                                                    .datasource("github")
                                                                                                    .handle("<value>")
                                                                                                    .build(),
                                                                                                DatasourceProfile.builder()
                                                                                                    .datasource("github")
                                                                                                    .handle("<value>")
                                                                                                    .build()))
                                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                                .suggestions(List.of(
                                                                                                    QuerySuggestion.builder()
                                                                                                        .query("app:github type:pull author:mortimer")
                                                                                                        .label("Mortimer's PRs")
                                                                                                        .datasource("github")
                                                                                                        .build()))
                                                                                                .build())
                                                                                            .inviteInfo(InviteInfo.builder()
                                                                                                .invites(List.of(
                                                                                                    ChannelInviteInfo.builder()
                                                                                                        .build(),
                                                                                                    ChannelInviteInfo.builder()
                                                                                                        .build(),
                                                                                                    ChannelInviteInfo.builder()
                                                                                                        .build()))
                                                                                                .build())
                                                                                            .badges(List.of(
                                                                                                Badge.builder()
                                                                                                    .key("deployment_name_new_hire")
                                                                                                    .displayName("New hire")
                                                                                                    .iconConfig(IconConfig.builder()
                                                                                                        .color("#343CED")
                                                                                                        .key("person_icon")
                                                                                                        .iconType(IconType.GLYPH)
                                                                                                        .name("user")
                                                                                                        .build())
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .build())
                                                                                    .roles(List.of(
                                                                                        UserRoleSpecification.builder()
                                                                                            .role(UserRole.ANSWER_MODERATOR)
                                                                                            .person(Person.builder()
                                                                                                .name("George Clooney")
                                                                                                .obfuscatedId("abc123")
                                                                                                .metadata(PersonMetadata.builder()
                                                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                                                    .title("Actor")
                                                                                                    .department("Movies")
                                                                                                    .email("george@example.com")
                                                                                                    .location("Hollywood, CA")
                                                                                                    .phone("6505551234")
                                                                                                    .photoUrl("https://example.com/george.jpg")
                                                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                                                    .datasourceProfile(List.of(
                                                                                                        DatasourceProfile.builder()
                                                                                                            .datasource("github")
                                                                                                            .handle("<value>")
                                                                                                            .build(),
                                                                                                        DatasourceProfile.builder()
                                                                                                            .datasource("github")
                                                                                                            .handle("<value>")
                                                                                                            .build()))
                                                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                                                        .suggestions(List.of(
                                                                                                            QuerySuggestion.builder()
                                                                                                                .query("app:github type:pull author:mortimer")
                                                                                                                .label("Mortimer's PRs")
                                                                                                                .datasource("github")
                                                                                                                .build()))
                                                                                                        .build())
                                                                                                    .inviteInfo(InviteInfo.builder()
                                                                                                        .invites(List.of(
                                                                                                            ChannelInviteInfo.builder()
                                                                                                                .build(),
                                                                                                            ChannelInviteInfo.builder()
                                                                                                                .build(),
                                                                                                            ChannelInviteInfo.builder()
                                                                                                                .build()))
                                                                                                        .build())
                                                                                                    .badges(List.of(
                                                                                                        Badge.builder()
                                                                                                            .key("deployment_name_new_hire")
                                                                                                            .displayName("New hire")
                                                                                                            .iconConfig(IconConfig.builder()
                                                                                                                .color("#343CED")
                                                                                                                .key("person_icon")
                                                                                                                .iconType(IconType.GLYPH)
                                                                                                                .name("user")
                                                                                                                .build())
                                                                                                            .build()))
                                                                                                    .build())
                                                                                                .build())
                                                                                            .build(),
                                                                                        UserRoleSpecification.builder()
                                                                                            .role(UserRole.ANSWER_MODERATOR)
                                                                                            .person(Person.builder()
                                                                                                .name("George Clooney")
                                                                                                .obfuscatedId("abc123")
                                                                                                .metadata(PersonMetadata.builder()
                                                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                                                    .title("Actor")
                                                                                                    .department("Movies")
                                                                                                    .email("george@example.com")
                                                                                                    .location("Hollywood, CA")
                                                                                                    .phone("6505551234")
                                                                                                    .photoUrl("https://example.com/george.jpg")
                                                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                                                    .datasourceProfile(List.of(
                                                                                                        DatasourceProfile.builder()
                                                                                                            .datasource("github")
                                                                                                            .handle("<value>")
                                                                                                            .build(),
                                                                                                        DatasourceProfile.builder()
                                                                                                            .datasource("github")
                                                                                                            .handle("<value>")
                                                                                                            .build()))
                                                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                                                        .suggestions(List.of(
                                                                                                            QuerySuggestion.builder()
                                                                                                                .query("app:github type:pull author:mortimer")
                                                                                                                .label("Mortimer's PRs")
                                                                                                                .datasource("github")
                                                                                                                .build()))
                                                                                                        .build())
                                                                                                    .inviteInfo(InviteInfo.builder()
                                                                                                        .invites(List.of(
                                                                                                            ChannelInviteInfo.builder()
                                                                                                                .build(),
                                                                                                            ChannelInviteInfo.builder()
                                                                                                                .build(),
                                                                                                            ChannelInviteInfo.builder()
                                                                                                                .build()))
                                                                                                        .build())
                                                                                                    .badges(List.of(
                                                                                                        Badge.builder()
                                                                                                            .key("deployment_name_new_hire")
                                                                                                            .displayName("New hire")
                                                                                                            .iconConfig(IconConfig.builder()
                                                                                                                .color("#343CED")
                                                                                                                .key("person_icon")
                                                                                                                .iconType(IconType.GLYPH)
                                                                                                                .name("user")
                                                                                                                .build())
                                                                                                            .build()))
                                                                                                    .build())
                                                                                                .build())
                                                                                            .build()))
                                                                                    .build())
                                                                                .build(),
                                                                            CollectionItem.builder()
                                                                                .collectionId(420359L)
                                                                                .itemType(CollectionItemItemType.COLLECTION)
                                                                                .createdBy(Person.builder()
                                                                                    .name("George Clooney")
                                                                                    .obfuscatedId("abc123")
                                                                                    .metadata(PersonMetadata.builder()
                                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                                        .title("Actor")
                                                                                        .department("Movies")
                                                                                        .email("george@example.com")
                                                                                        .location("Hollywood, CA")
                                                                                        .phone("6505551234")
                                                                                        .photoUrl("https://example.com/george.jpg")
                                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                                        .datasourceProfile(List.of(
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build(),
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build(),
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build()))
                                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                                            .suggestions(List.of(
                                                                                                QuerySuggestion.builder()
                                                                                                    .query("app:github type:pull author:mortimer")
                                                                                                    .label("Mortimer's PRs")
                                                                                                    .datasource("github")
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .inviteInfo(InviteInfo.builder()
                                                                                            .invites(List.of(
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .badges(List.of(
                                                                                            Badge.builder()
                                                                                                .key("deployment_name_new_hire")
                                                                                                .displayName("New hire")
                                                                                                .iconConfig(IconConfig.builder()
                                                                                                    .color("#343CED")
                                                                                                    .key("person_icon")
                                                                                                    .iconType(IconType.GLYPH)
                                                                                                    .name("user")
                                                                                                    .build())
                                                                                                .build()))
                                                                                        .build())
                                                                                    .build())
                                                                                .shortcut(Shortcut.builder()
                                                                                    .inputAlias("<value>")
                                                                                    .createdBy(Person.builder()
                                                                                        .name("George Clooney")
                                                                                        .obfuscatedId("abc123")
                                                                                        .metadata(PersonMetadata.builder()
                                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                                            .title("Actor")
                                                                                            .department("Movies")
                                                                                            .email("george@example.com")
                                                                                            .location("Hollywood, CA")
                                                                                            .phone("6505551234")
                                                                                            .photoUrl("https://example.com/george.jpg")
                                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                                            .datasourceProfile(List.of(
                                                                                                DatasourceProfile.builder()
                                                                                                    .datasource("github")
                                                                                                    .handle("<value>")
                                                                                                    .build(),
                                                                                                DatasourceProfile.builder()
                                                                                                    .datasource("github")
                                                                                                    .handle("<value>")
                                                                                                    .build(),
                                                                                                DatasourceProfile.builder()
                                                                                                    .datasource("github")
                                                                                                    .handle("<value>")
                                                                                                    .build()))
                                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                                .suggestions(List.of(
                                                                                                    QuerySuggestion.builder()
                                                                                                        .query("app:github type:pull author:mortimer")
                                                                                                        .label("Mortimer's PRs")
                                                                                                        .datasource("github")
                                                                                                        .build()))
                                                                                                .build())
                                                                                            .inviteInfo(InviteInfo.builder()
                                                                                                .invites(List.of(
                                                                                                    ChannelInviteInfo.builder()
                                                                                                        .build(),
                                                                                                    ChannelInviteInfo.builder()
                                                                                                        .build(),
                                                                                                    ChannelInviteInfo.builder()
                                                                                                        .build()))
                                                                                                .build())
                                                                                            .badges(List.of(
                                                                                                Badge.builder()
                                                                                                    .key("deployment_name_new_hire")
                                                                                                    .displayName("New hire")
                                                                                                    .iconConfig(IconConfig.builder()
                                                                                                        .color("#343CED")
                                                                                                        .key("person_icon")
                                                                                                        .iconType(IconType.GLYPH)
                                                                                                        .name("user")
                                                                                                        .build())
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .build())
                                                                                    .updatedBy(Person.builder()
                                                                                        .name("George Clooney")
                                                                                        .obfuscatedId("abc123")
                                                                                        .metadata(PersonMetadata.builder()
                                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                                            .title("Actor")
                                                                                            .department("Movies")
                                                                                            .email("george@example.com")
                                                                                            .location("Hollywood, CA")
                                                                                            .phone("6505551234")
                                                                                            .photoUrl("https://example.com/george.jpg")
                                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                                            .datasourceProfile(List.of(
                                                                                                DatasourceProfile.builder()
                                                                                                    .datasource("github")
                                                                                                    .handle("<value>")
                                                                                                    .build(),
                                                                                                DatasourceProfile.builder()
                                                                                                    .datasource("github")
                                                                                                    .handle("<value>")
                                                                                                    .build()))
                                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                                .suggestions(List.of(
                                                                                                    QuerySuggestion.builder()
                                                                                                        .query("app:github type:pull author:mortimer")
                                                                                                        .label("Mortimer's PRs")
                                                                                                        .datasource("github")
                                                                                                        .build()))
                                                                                                .build())
                                                                                            .inviteInfo(InviteInfo.builder()
                                                                                                .invites(List.of(
                                                                                                    ChannelInviteInfo.builder()
                                                                                                        .build(),
                                                                                                    ChannelInviteInfo.builder()
                                                                                                        .build(),
                                                                                                    ChannelInviteInfo.builder()
                                                                                                        .build()))
                                                                                                .build())
                                                                                            .badges(List.of(
                                                                                                Badge.builder()
                                                                                                    .key("deployment_name_new_hire")
                                                                                                    .displayName("New hire")
                                                                                                    .iconConfig(IconConfig.builder()
                                                                                                        .color("#343CED")
                                                                                                        .key("person_icon")
                                                                                                        .iconType(IconType.GLYPH)
                                                                                                        .name("user")
                                                                                                        .build())
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .build())
                                                                                    .roles(List.of(
                                                                                        UserRoleSpecification.builder()
                                                                                            .role(UserRole.ANSWER_MODERATOR)
                                                                                            .person(Person.builder()
                                                                                                .name("George Clooney")
                                                                                                .obfuscatedId("abc123")
                                                                                                .metadata(PersonMetadata.builder()
                                                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                                                    .title("Actor")
                                                                                                    .department("Movies")
                                                                                                    .email("george@example.com")
                                                                                                    .location("Hollywood, CA")
                                                                                                    .phone("6505551234")
                                                                                                    .photoUrl("https://example.com/george.jpg")
                                                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                                                    .datasourceProfile(List.of(
                                                                                                        DatasourceProfile.builder()
                                                                                                            .datasource("github")
                                                                                                            .handle("<value>")
                                                                                                            .build(),
                                                                                                        DatasourceProfile.builder()
                                                                                                            .datasource("github")
                                                                                                            .handle("<value>")
                                                                                                            .build()))
                                                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                                                        .suggestions(List.of(
                                                                                                            QuerySuggestion.builder()
                                                                                                                .query("app:github type:pull author:mortimer")
                                                                                                                .label("Mortimer's PRs")
                                                                                                                .datasource("github")
                                                                                                                .build()))
                                                                                                        .build())
                                                                                                    .inviteInfo(InviteInfo.builder()
                                                                                                        .invites(List.of(
                                                                                                            ChannelInviteInfo.builder()
                                                                                                                .build(),
                                                                                                            ChannelInviteInfo.builder()
                                                                                                                .build(),
                                                                                                            ChannelInviteInfo.builder()
                                                                                                                .build()))
                                                                                                        .build())
                                                                                                    .badges(List.of(
                                                                                                        Badge.builder()
                                                                                                            .key("deployment_name_new_hire")
                                                                                                            .displayName("New hire")
                                                                                                            .iconConfig(IconConfig.builder()
                                                                                                                .color("#343CED")
                                                                                                                .key("person_icon")
                                                                                                                .iconType(IconType.GLYPH)
                                                                                                                .name("user")
                                                                                                                .build())
                                                                                                            .build()))
                                                                                                    .build())
                                                                                                .build())
                                                                                            .build(),
                                                                                        UserRoleSpecification.builder()
                                                                                            .role(UserRole.ANSWER_MODERATOR)
                                                                                            .person(Person.builder()
                                                                                                .name("George Clooney")
                                                                                                .obfuscatedId("abc123")
                                                                                                .metadata(PersonMetadata.builder()
                                                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                                                    .title("Actor")
                                                                                                    .department("Movies")
                                                                                                    .email("george@example.com")
                                                                                                    .location("Hollywood, CA")
                                                                                                    .phone("6505551234")
                                                                                                    .photoUrl("https://example.com/george.jpg")
                                                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                                                    .datasourceProfile(List.of(
                                                                                                        DatasourceProfile.builder()
                                                                                                            .datasource("github")
                                                                                                            .handle("<value>")
                                                                                                            .build(),
                                                                                                        DatasourceProfile.builder()
                                                                                                            .datasource("github")
                                                                                                            .handle("<value>")
                                                                                                            .build()))
                                                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                                                        .suggestions(List.of(
                                                                                                            QuerySuggestion.builder()
                                                                                                                .query("app:github type:pull author:mortimer")
                                                                                                                .label("Mortimer's PRs")
                                                                                                                .datasource("github")
                                                                                                                .build()))
                                                                                                        .build())
                                                                                                    .inviteInfo(InviteInfo.builder()
                                                                                                        .invites(List.of(
                                                                                                            ChannelInviteInfo.builder()
                                                                                                                .build(),
                                                                                                            ChannelInviteInfo.builder()
                                                                                                                .build(),
                                                                                                            ChannelInviteInfo.builder()
                                                                                                                .build()))
                                                                                                        .build())
                                                                                                    .badges(List.of(
                                                                                                        Badge.builder()
                                                                                                            .key("deployment_name_new_hire")
                                                                                                            .displayName("New hire")
                                                                                                            .iconConfig(IconConfig.builder()
                                                                                                                .color("#343CED")
                                                                                                                .key("person_icon")
                                                                                                                .iconType(IconType.GLYPH)
                                                                                                                .name("user")
                                                                                                                .build())
                                                                                                            .build()))
                                                                                                    .build())
                                                                                                .build())
                                                                                            .build()))
                                                                                    .build())
                                                                                .build()))
                                                                        .build()))
                                                                .interactions(DocumentInteractions.builder()
                                                                    .reacts(List.of(
                                                                        Reaction.builder()
                                                                            .reactors(List.of(
                                                                                Person.builder()
                                                                                    .name("George Clooney")
                                                                                    .obfuscatedId("abc123")
                                                                                    .build()))
                                                                            .build(),
                                                                        Reaction.builder()
                                                                            .reactors(List.of(
                                                                                Person.builder()
                                                                                    .name("George Clooney")
                                                                                    .obfuscatedId("abc123")
                                                                                    .build()))
                                                                            .build()))
                                                                    .shares(List.of(
                                                                        Share.builder()
                                                                            .numDaysAgo(582012L)
                                                                            .sharer(Person.builder()
                                                                                .name("George Clooney")
                                                                                .obfuscatedId("abc123")
                                                                                .metadata(PersonMetadata.builder()
                                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                                    .title("Actor")
                                                                                    .department("Movies")
                                                                                    .email("george@example.com")
                                                                                    .location("Hollywood, CA")
                                                                                    .phone("6505551234")
                                                                                    .photoUrl("https://example.com/george.jpg")
                                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                                    .datasourceProfile(List.of(
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build()))
                                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                                        .suggestions(List.of(
                                                                                            QuerySuggestion.builder()
                                                                                                .query("app:github type:pull author:mortimer")
                                                                                                .label("Mortimer's PRs")
                                                                                                .datasource("github")
                                                                                                .build()))
                                                                                        .build())
                                                                                    .inviteInfo(InviteInfo.builder()
                                                                                        .invites(List.of(
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build()))
                                                                                        .build())
                                                                                    .badges(List.of(
                                                                                        Badge.builder()
                                                                                            .key("deployment_name_new_hire")
                                                                                            .displayName("New hire")
                                                                                            .iconConfig(IconConfig.builder()
                                                                                                .color("#343CED")
                                                                                                .key("person_icon")
                                                                                                .iconType(IconType.GLYPH)
                                                                                                .name("user")
                                                                                                .build())
                                                                                            .build()))
                                                                                    .build())
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .verification(Verification.builder()
                                                                    .state(State.DEPRECATED)
                                                                    .metadata(VerificationMetadata.builder()
                                                                        .lastVerifier(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .reminders(List.of(
                                                                            Reminder.builder()
                                                                                .assignee(Person.builder()
                                                                                    .name("George Clooney")
                                                                                    .obfuscatedId("abc123")
                                                                                    .metadata(PersonMetadata.builder()
                                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                                        .title("Actor")
                                                                                        .department("Movies")
                                                                                        .email("george@example.com")
                                                                                        .location("Hollywood, CA")
                                                                                        .phone("6505551234")
                                                                                        .photoUrl("https://example.com/george.jpg")
                                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                                        .datasourceProfile(List.of(
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build(),
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build(),
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build()))
                                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                                            .suggestions(List.of(
                                                                                                QuerySuggestion.builder()
                                                                                                    .query("app:github type:pull author:mortimer")
                                                                                                    .label("Mortimer's PRs")
                                                                                                    .datasource("github")
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .inviteInfo(InviteInfo.builder()
                                                                                            .invites(List.of(
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .badges(List.of(
                                                                                            Badge.builder()
                                                                                                .key("deployment_name_new_hire")
                                                                                                .displayName("New hire")
                                                                                                .iconConfig(IconConfig.builder()
                                                                                                    .color("#343CED")
                                                                                                    .key("person_icon")
                                                                                                    .iconType(IconType.GLYPH)
                                                                                                    .name("user")
                                                                                                    .build())
                                                                                                .build()))
                                                                                        .build())
                                                                                    .build())
                                                                                .remindAt(785622L)
                                                                                .requestor(Person.builder()
                                                                                    .name("George Clooney")
                                                                                    .obfuscatedId("abc123")
                                                                                    .metadata(PersonMetadata.builder()
                                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                                        .title("Actor")
                                                                                        .department("Movies")
                                                                                        .email("george@example.com")
                                                                                        .location("Hollywood, CA")
                                                                                        .phone("6505551234")
                                                                                        .photoUrl("https://example.com/george.jpg")
                                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                                        .datasourceProfile(List.of(
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build(),
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build()))
                                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                                            .suggestions(List.of(
                                                                                                QuerySuggestion.builder()
                                                                                                    .query("app:github type:pull author:mortimer")
                                                                                                    .label("Mortimer's PRs")
                                                                                                    .datasource("github")
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .inviteInfo(InviteInfo.builder()
                                                                                            .invites(List.of(
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .badges(List.of(
                                                                                            Badge.builder()
                                                                                                .key("deployment_name_new_hire")
                                                                                                .displayName("New hire")
                                                                                                .iconConfig(IconConfig.builder()
                                                                                                    .color("#343CED")
                                                                                                    .key("person_icon")
                                                                                                    .iconType(IconType.GLYPH)
                                                                                                    .name("user")
                                                                                                    .build())
                                                                                                .build()))
                                                                                        .build())
                                                                                    .build())
                                                                                .build(),
                                                                            Reminder.builder()
                                                                                .assignee(Person.builder()
                                                                                    .name("George Clooney")
                                                                                    .obfuscatedId("abc123")
                                                                                    .metadata(PersonMetadata.builder()
                                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                                        .title("Actor")
                                                                                        .department("Movies")
                                                                                        .email("george@example.com")
                                                                                        .location("Hollywood, CA")
                                                                                        .phone("6505551234")
                                                                                        .photoUrl("https://example.com/george.jpg")
                                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                                        .datasourceProfile(List.of(
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build(),
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build(),
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build()))
                                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                                            .suggestions(List.of(
                                                                                                QuerySuggestion.builder()
                                                                                                    .query("app:github type:pull author:mortimer")
                                                                                                    .label("Mortimer's PRs")
                                                                                                    .datasource("github")
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .inviteInfo(InviteInfo.builder()
                                                                                            .invites(List.of(
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .badges(List.of(
                                                                                            Badge.builder()
                                                                                                .key("deployment_name_new_hire")
                                                                                                .displayName("New hire")
                                                                                                .iconConfig(IconConfig.builder()
                                                                                                    .color("#343CED")
                                                                                                    .key("person_icon")
                                                                                                    .iconType(IconType.GLYPH)
                                                                                                    .name("user")
                                                                                                    .build())
                                                                                                .build()))
                                                                                        .build())
                                                                                    .build())
                                                                                .remindAt(785622L)
                                                                                .requestor(Person.builder()
                                                                                    .name("George Clooney")
                                                                                    .obfuscatedId("abc123")
                                                                                    .metadata(PersonMetadata.builder()
                                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                                        .title("Actor")
                                                                                        .department("Movies")
                                                                                        .email("george@example.com")
                                                                                        .location("Hollywood, CA")
                                                                                        .phone("6505551234")
                                                                                        .photoUrl("https://example.com/george.jpg")
                                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                                        .datasourceProfile(List.of(
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build(),
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build()))
                                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                                            .suggestions(List.of(
                                                                                                QuerySuggestion.builder()
                                                                                                    .query("app:github type:pull author:mortimer")
                                                                                                    .label("Mortimer's PRs")
                                                                                                    .datasource("github")
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .inviteInfo(InviteInfo.builder()
                                                                                            .invites(List.of(
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .badges(List.of(
                                                                                            Badge.builder()
                                                                                                .key("deployment_name_new_hire")
                                                                                                .displayName("New hire")
                                                                                                .iconConfig(IconConfig.builder()
                                                                                                    .color("#343CED")
                                                                                                    .key("person_icon")
                                                                                                    .iconType(IconType.GLYPH)
                                                                                                    .name("user")
                                                                                                    .build())
                                                                                                .build()))
                                                                                        .build())
                                                                                    .build())
                                                                                .build(),
                                                                            Reminder.builder()
                                                                                .assignee(Person.builder()
                                                                                    .name("George Clooney")
                                                                                    .obfuscatedId("abc123")
                                                                                    .metadata(PersonMetadata.builder()
                                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                                        .title("Actor")
                                                                                        .department("Movies")
                                                                                        .email("george@example.com")
                                                                                        .location("Hollywood, CA")
                                                                                        .phone("6505551234")
                                                                                        .photoUrl("https://example.com/george.jpg")
                                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                                        .datasourceProfile(List.of(
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build(),
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build(),
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build()))
                                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                                            .suggestions(List.of(
                                                                                                QuerySuggestion.builder()
                                                                                                    .query("app:github type:pull author:mortimer")
                                                                                                    .label("Mortimer's PRs")
                                                                                                    .datasource("github")
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .inviteInfo(InviteInfo.builder()
                                                                                            .invites(List.of(
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .badges(List.of(
                                                                                            Badge.builder()
                                                                                                .key("deployment_name_new_hire")
                                                                                                .displayName("New hire")
                                                                                                .iconConfig(IconConfig.builder()
                                                                                                    .color("#343CED")
                                                                                                    .key("person_icon")
                                                                                                    .iconType(IconType.GLYPH)
                                                                                                    .name("user")
                                                                                                    .build())
                                                                                                .build()))
                                                                                        .build())
                                                                                    .build())
                                                                                .remindAt(785622L)
                                                                                .requestor(Person.builder()
                                                                                    .name("George Clooney")
                                                                                    .obfuscatedId("abc123")
                                                                                    .metadata(PersonMetadata.builder()
                                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                                        .title("Actor")
                                                                                        .department("Movies")
                                                                                        .email("george@example.com")
                                                                                        .location("Hollywood, CA")
                                                                                        .phone("6505551234")
                                                                                        .photoUrl("https://example.com/george.jpg")
                                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                                        .datasourceProfile(List.of(
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build(),
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build()))
                                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                                            .suggestions(List.of(
                                                                                                QuerySuggestion.builder()
                                                                                                    .query("app:github type:pull author:mortimer")
                                                                                                    .label("Mortimer's PRs")
                                                                                                    .datasource("github")
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .inviteInfo(InviteInfo.builder()
                                                                                            .invites(List.of(
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .badges(List.of(
                                                                                            Badge.builder()
                                                                                                .key("deployment_name_new_hire")
                                                                                                .displayName("New hire")
                                                                                                .iconConfig(IconConfig.builder()
                                                                                                    .color("#343CED")
                                                                                                    .key("person_icon")
                                                                                                    .iconType(IconType.GLYPH)
                                                                                                    .name("user")
                                                                                                    .build())
                                                                                                .build()))
                                                                                        .build())
                                                                                    .build())
                                                                                .build()))
                                                                        .lastReminder(Reminder.builder()
                                                                            .assignee(Person.builder()
                                                                                .name("George Clooney")
                                                                                .obfuscatedId("abc123")
                                                                                .metadata(PersonMetadata.builder()
                                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                                    .title("Actor")
                                                                                    .department("Movies")
                                                                                    .email("george@example.com")
                                                                                    .location("Hollywood, CA")
                                                                                    .phone("6505551234")
                                                                                    .photoUrl("https://example.com/george.jpg")
                                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                                    .datasourceProfile(List.of(
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build(),
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build(),
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build()))
                                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                                        .suggestions(List.of(
                                                                                            QuerySuggestion.builder()
                                                                                                .query("app:github type:pull author:mortimer")
                                                                                                .label("Mortimer's PRs")
                                                                                                .datasource("github")
                                                                                                .build()))
                                                                                        .build())
                                                                                    .inviteInfo(InviteInfo.builder()
                                                                                        .invites(List.of(
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build()))
                                                                                        .build())
                                                                                    .badges(List.of(
                                                                                        Badge.builder()
                                                                                            .key("deployment_name_new_hire")
                                                                                            .displayName("New hire")
                                                                                            .iconConfig(IconConfig.builder()
                                                                                                .color("#343CED")
                                                                                                .key("person_icon")
                                                                                                .iconType(IconType.GLYPH)
                                                                                                .name("user")
                                                                                                .build())
                                                                                            .build()))
                                                                                    .build())
                                                                                .build())
                                                                            .remindAt(269943L)
                                                                            .requestor(Person.builder()
                                                                                .name("George Clooney")
                                                                                .obfuscatedId("abc123")
                                                                                .metadata(PersonMetadata.builder()
                                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                                    .title("Actor")
                                                                                    .department("Movies")
                                                                                    .email("george@example.com")
                                                                                    .location("Hollywood, CA")
                                                                                    .phone("6505551234")
                                                                                    .photoUrl("https://example.com/george.jpg")
                                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                                    .datasourceProfile(List.of(
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build()))
                                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                                        .suggestions(List.of(
                                                                                            QuerySuggestion.builder()
                                                                                                .query("app:github type:pull author:mortimer")
                                                                                                .label("Mortimer's PRs")
                                                                                                .datasource("github")
                                                                                                .build()))
                                                                                        .build())
                                                                                    .inviteInfo(InviteInfo.builder()
                                                                                        .invites(List.of(
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build()))
                                                                                        .build())
                                                                                    .badges(List.of(
                                                                                        Badge.builder()
                                                                                            .key("deployment_name_new_hire")
                                                                                            .displayName("New hire")
                                                                                            .iconConfig(IconConfig.builder()
                                                                                                .color("#343CED")
                                                                                                .key("person_icon")
                                                                                                .iconType(IconType.GLYPH)
                                                                                                .name("user")
                                                                                                .build())
                                                                                            .build()))
                                                                                    .build())
                                                                                .build())
                                                                            .build())
                                                                        .candidateVerifiers(List.of(
                                                                            Person.builder()
                                                                                .name("George Clooney")
                                                                                .obfuscatedId("abc123")
                                                                                .build()))
                                                                        .build())
                                                                    .build())
                                                                .shortcuts(List.of(
                                                                    Shortcut.builder()
                                                                        .inputAlias("<value>")
                                                                        .createdBy(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .updatedBy(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .build()))
                                                                .customData(Map.ofEntries(
                                                                    Map.entry("someCustomField", CustomDataValue.builder()
                                                                        .build())))
                                                                .contactPerson(Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .metadata(PersonMetadata.builder()
                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                        .title("Actor")
                                                                        .department("Movies")
                                                                        .email("george@example.com")
                                                                        .location("Hollywood, CA")
                                                                        .phone("6505551234")
                                                                        .photoUrl("https://example.com/george.jpg")
                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                        .datasourceProfile(List.of(
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build()))
                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                            .suggestions(List.of(
                                                                                QuerySuggestion.builder()
                                                                                    .query("app:github type:pull author:mortimer")
                                                                                    .label("Mortimer's PRs")
                                                                                    .datasource("github")
                                                                                    .build()))
                                                                            .build())
                                                                        .inviteInfo(InviteInfo.builder()
                                                                            .invites(List.of(
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build()))
                                                                            .build())
                                                                        .badges(List.of(
                                                                            Badge.builder()
                                                                                .key("deployment_name_new_hire")
                                                                                .displayName("New hire")
                                                                                .iconConfig(IconConfig.builder()
                                                                                    .color("#343CED")
                                                                                    .key("person_icon")
                                                                                    .iconType(IconType.GLYPH)
                                                                                    .name("user")
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build())
                                                                .build())
                                                            .build())
                                                        .title("title")
                                                        .nativeAppUrl("slack://foo/bar")
                                                        .snippets(List.of(
                                                            SearchResultSnippet.builder()
                                                                .snippet("snippet")
                                                                .mimeType("mimeType")
                                                                .build()))
                                                        .relatedResults(List.of(
                                                            RelatedDocuments.builder()
                                                                .querySuggestion(QuerySuggestion.builder()
                                                                    .query("app:github type:pull author:mortimer")
                                                                    .searchProviderInfo(SearchProviderInfo.builder()
                                                                        .name("Google")
                                                                        .searchLinkUrlTemplate("https://www.google.com/search?q={query}&hl=en")
                                                                        .build())
                                                                    .label("Mortimer's PRs")
                                                                    .datasource("github")
                                                                    .requestOptions(SearchRequestOptions.builder()
                                                                        .facetBucketSize(127205L)
                                                                        .datasourceFilter("JIRA")
                                                                        .datasourcesFilter(List.of(
                                                                            "JIRA"))
                                                                        .queryOverridesFacetFilters(true)
                                                                        .facetFilters(List.of(
                                                                            FacetFilter.builder()
                                                                                .fieldName("type")
                                                                                .values(List.of(
                                                                                    FacetFilterValue.builder()
                                                                                        .value("Spreadsheet")
                                                                                        .relationType(RelationType.EQUALS)
                                                                                        .build(),
                                                                                    FacetFilterValue.builder()
                                                                                        .value("Presentation")
                                                                                        .relationType(RelationType.EQUALS)
                                                                                        .build()))
                                                                                .build()))
                                                                        .facetFilterSets(List.of(
                                                                            FacetFilterSet.builder()
                                                                                .filters(List.of(
                                                                                    FacetFilter.builder()
                                                                                        .fieldName("type")
                                                                                        .values(List.of(
                                                                                            FacetFilterValue.builder()
                                                                                                .value("Spreadsheet")
                                                                                                .relationType(RelationType.EQUALS)
                                                                                                .build(),
                                                                                            FacetFilterValue.builder()
                                                                                                .value("Presentation")
                                                                                                .relationType(RelationType.EQUALS)
                                                                                                .build()))
                                                                                        .build()))
                                                                                .build(),
                                                                            FacetFilterSet.builder()
                                                                                .filters(List.of(
                                                                                    FacetFilter.builder()
                                                                                        .fieldName("type")
                                                                                        .values(List.of(
                                                                                            FacetFilterValue.builder()
                                                                                                .value("Spreadsheet")
                                                                                                .relationType(RelationType.EQUALS)
                                                                                                .build(),
                                                                                            FacetFilterValue.builder()
                                                                                                .value("Presentation")
                                                                                                .relationType(RelationType.EQUALS)
                                                                                                .build()))
                                                                                        .build()))
                                                                                .build(),
                                                                            FacetFilterSet.builder()
                                                                                .filters(List.of(
                                                                                    FacetFilter.builder()
                                                                                        .fieldName("type")
                                                                                        .values(List.of(
                                                                                            FacetFilterValue.builder()
                                                                                                .value("Spreadsheet")
                                                                                                .relationType(RelationType.EQUALS)
                                                                                                .build(),
                                                                                            FacetFilterValue.builder()
                                                                                                .value("Presentation")
                                                                                                .relationType(RelationType.EQUALS)
                                                                                                .build()))
                                                                                        .build()))
                                                                                .build()))
                                                                        .authTokens(List.of(
                                                                            AuthToken.builder()
                                                                                .accessToken("123abc")
                                                                                .datasource("gmail")
                                                                                .scope("email profile https://www.googleapis.com/auth/gmail.readonly")
                                                                                .tokenType("Bearer")
                                                                                .authUser("1")
                                                                                .build()))
                                                                        .build())
                                                                    .inputDetails(SearchRequestInputDetails.builder()
                                                                        .hasCopyPaste(true)
                                                                        .build())
                                                                    .build())
                                                                .build(),
                                                            RelatedDocuments.builder()
                                                                .querySuggestion(QuerySuggestion.builder()
                                                                    .query("app:github type:pull author:mortimer")
                                                                    .searchProviderInfo(SearchProviderInfo.builder()
                                                                        .name("Google")
                                                                        .searchLinkUrlTemplate("https://www.google.com/search?q={query}&hl=en")
                                                                        .build())
                                                                    .label("Mortimer's PRs")
                                                                    .datasource("github")
                                                                    .requestOptions(SearchRequestOptions.builder()
                                                                        .facetBucketSize(127205L)
                                                                        .datasourceFilter("JIRA")
                                                                        .datasourcesFilter(List.of(
                                                                            "JIRA"))
                                                                        .queryOverridesFacetFilters(true)
                                                                        .facetFilters(List.of(
                                                                            FacetFilter.builder()
                                                                                .fieldName("type")
                                                                                .values(List.of(
                                                                                    FacetFilterValue.builder()
                                                                                        .value("Spreadsheet")
                                                                                        .relationType(RelationType.EQUALS)
                                                                                        .build(),
                                                                                    FacetFilterValue.builder()
                                                                                        .value("Presentation")
                                                                                        .relationType(RelationType.EQUALS)
                                                                                        .build()))
                                                                                .build()))
                                                                        .facetFilterSets(List.of(
                                                                            FacetFilterSet.builder()
                                                                                .filters(List.of(
                                                                                    FacetFilter.builder()
                                                                                        .fieldName("type")
                                                                                        .values(List.of(
                                                                                            FacetFilterValue.builder()
                                                                                                .value("Spreadsheet")
                                                                                                .relationType(RelationType.EQUALS)
                                                                                                .build(),
                                                                                            FacetFilterValue.builder()
                                                                                                .value("Presentation")
                                                                                                .relationType(RelationType.EQUALS)
                                                                                                .build()))
                                                                                        .build()))
                                                                                .build(),
                                                                            FacetFilterSet.builder()
                                                                                .filters(List.of(
                                                                                    FacetFilter.builder()
                                                                                        .fieldName("type")
                                                                                        .values(List.of(
                                                                                            FacetFilterValue.builder()
                                                                                                .value("Spreadsheet")
                                                                                                .relationType(RelationType.EQUALS)
                                                                                                .build(),
                                                                                            FacetFilterValue.builder()
                                                                                                .value("Presentation")
                                                                                                .relationType(RelationType.EQUALS)
                                                                                                .build()))
                                                                                        .build()))
                                                                                .build(),
                                                                            FacetFilterSet.builder()
                                                                                .filters(List.of(
                                                                                    FacetFilter.builder()
                                                                                        .fieldName("type")
                                                                                        .values(List.of(
                                                                                            FacetFilterValue.builder()
                                                                                                .value("Spreadsheet")
                                                                                                .relationType(RelationType.EQUALS)
                                                                                                .build(),
                                                                                            FacetFilterValue.builder()
                                                                                                .value("Presentation")
                                                                                                .relationType(RelationType.EQUALS)
                                                                                                .build()))
                                                                                        .build()))
                                                                                .build()))
                                                                        .authTokens(List.of(
                                                                            AuthToken.builder()
                                                                                .accessToken("123abc")
                                                                                .datasource("gmail")
                                                                                .scope("email profile https://www.googleapis.com/auth/gmail.readonly")
                                                                                .tokenType("Bearer")
                                                                                .authUser("1")
                                                                                .build()))
                                                                        .build())
                                                                    .inputDetails(SearchRequestInputDetails.builder()
                                                                        .hasCopyPaste(true)
                                                                        .build())
                                                                    .build())
                                                                .build()))
                                                        .allClusteredResults(List.of(
                                                            ClusterGroup.builder()
                                                                .visibleCountHint(156570L)
                                                                .build(),
                                                            ClusterGroup.builder()
                                                                .visibleCountHint(156570L)
                                                                .build()))
                                                        .mustIncludeSuggestions(QuerySuggestionList.builder()
                                                            .person(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .build())
                                                        .querySuggestion(QuerySuggestion.builder()
                                                            .query("app:github type:pull author:mortimer")
                                                            .searchProviderInfo(SearchProviderInfo.builder()
                                                                .name("Google")
                                                                .searchLinkUrlTemplate("https://www.google.com/search?q={query}&hl=en")
                                                                .build())
                                                            .label("Mortimer's PRs")
                                                            .datasource("github")
                                                            .requestOptions(SearchRequestOptions.builder()
                                                                .facetBucketSize(974103L)
                                                                .datasourceFilter("JIRA")
                                                                .datasourcesFilter(List.of(
                                                                    "JIRA"))
                                                                .queryOverridesFacetFilters(true)
                                                                .facetFilters(List.of(
                                                                    FacetFilter.builder()
                                                                        .fieldName("type")
                                                                        .values(List.of(
                                                                            FacetFilterValue.builder()
                                                                                .value("Spreadsheet")
                                                                                .relationType(RelationType.EQUALS)
                                                                                .build(),
                                                                            FacetFilterValue.builder()
                                                                                .value("Presentation")
                                                                                .relationType(RelationType.EQUALS)
                                                                                .build()))
                                                                        .build()))
                                                                .facetFilterSets(List.of(
                                                                    FacetFilterSet.builder()
                                                                        .filters(List.of(
                                                                            FacetFilter.builder()
                                                                                .fieldName("type")
                                                                                .values(List.of(
                                                                                    FacetFilterValue.builder()
                                                                                        .value("Spreadsheet")
                                                                                        .relationType(RelationType.EQUALS)
                                                                                        .build(),
                                                                                    FacetFilterValue.builder()
                                                                                        .value("Presentation")
                                                                                        .relationType(RelationType.EQUALS)
                                                                                        .build()))
                                                                                .build()))
                                                                        .build(),
                                                                    FacetFilterSet.builder()
                                                                        .filters(List.of(
                                                                            FacetFilter.builder()
                                                                                .fieldName("type")
                                                                                .values(List.of(
                                                                                    FacetFilterValue.builder()
                                                                                        .value("Spreadsheet")
                                                                                        .relationType(RelationType.EQUALS)
                                                                                        .build(),
                                                                                    FacetFilterValue.builder()
                                                                                        .value("Presentation")
                                                                                        .relationType(RelationType.EQUALS)
                                                                                        .build()))
                                                                                .build()))
                                                                        .build(),
                                                                    FacetFilterSet.builder()
                                                                        .filters(List.of(
                                                                            FacetFilter.builder()
                                                                                .fieldName("type")
                                                                                .values(List.of(
                                                                                    FacetFilterValue.builder()
                                                                                        .value("Spreadsheet")
                                                                                        .relationType(RelationType.EQUALS)
                                                                                        .build(),
                                                                                    FacetFilterValue.builder()
                                                                                        .value("Presentation")
                                                                                        .relationType(RelationType.EQUALS)
                                                                                        .build()))
                                                                                .build()))
                                                                        .build()))
                                                                .authTokens(List.of(
                                                                    AuthToken.builder()
                                                                        .accessToken("123abc")
                                                                        .datasource("gmail")
                                                                        .scope("email profile https://www.googleapis.com/auth/gmail.readonly")
                                                                        .tokenType("Bearer")
                                                                        .authUser("1")
                                                                        .build()))
                                                                .build())
                                                            .inputDetails(SearchRequestInputDetails.builder()
                                                                .hasCopyPaste(true)
                                                                .build())
                                                            .build())
                                                        .build())
                                                    .build())
                                                .meeting(Meeting.builder()
                                                    .attendees(CalendarAttendees.builder()
                                                        .people(List.of(
                                                            CalendarAttendee.builder()
                                                                .person(Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .metadata(PersonMetadata.builder()
                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                        .title("Actor")
                                                                        .department("Movies")
                                                                        .email("george@example.com")
                                                                        .location("Hollywood, CA")
                                                                        .phone("6505551234")
                                                                        .photoUrl("https://example.com/george.jpg")
                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                        .datasourceProfile(List.of(
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build()))
                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                            .suggestions(List.of(
                                                                                QuerySuggestion.builder()
                                                                                    .query("app:github type:pull author:mortimer")
                                                                                    .label("Mortimer's PRs")
                                                                                    .datasource("github")
                                                                                    .build()))
                                                                            .build())
                                                                        .inviteInfo(InviteInfo.builder()
                                                                            .invites(List.of(
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build()))
                                                                            .build())
                                                                        .badges(List.of(
                                                                            Badge.builder()
                                                                                .key("deployment_name_new_hire")
                                                                                .displayName("New hire")
                                                                                .iconConfig(IconConfig.builder()
                                                                                    .color("#343CED")
                                                                                    .key("person_icon")
                                                                                    .iconType(IconType.GLYPH)
                                                                                    .name("user")
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build())
                                                                .build(),
                                                            CalendarAttendee.builder()
                                                                .person(Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .metadata(PersonMetadata.builder()
                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                        .title("Actor")
                                                                        .department("Movies")
                                                                        .email("george@example.com")
                                                                        .location("Hollywood, CA")
                                                                        .phone("6505551234")
                                                                        .photoUrl("https://example.com/george.jpg")
                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                        .datasourceProfile(List.of(
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build()))
                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                            .suggestions(List.of(
                                                                                QuerySuggestion.builder()
                                                                                    .query("app:github type:pull author:mortimer")
                                                                                    .label("Mortimer's PRs")
                                                                                    .datasource("github")
                                                                                    .build()))
                                                                            .build())
                                                                        .inviteInfo(InviteInfo.builder()
                                                                            .invites(List.of(
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build()))
                                                                            .build())
                                                                        .badges(List.of(
                                                                            Badge.builder()
                                                                                .key("deployment_name_new_hire")
                                                                                .displayName("New hire")
                                                                                .iconConfig(IconConfig.builder()
                                                                                    .color("#343CED")
                                                                                    .key("person_icon")
                                                                                    .iconType(IconType.GLYPH)
                                                                                    .name("user")
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build())
                                                                .build()))
                                                        .build())
                                                    .build())
                                                .collection(Collection.builder()
                                                    .name("<value>")
                                                    .description("rubric sadly clueless whoever torn rim coaxingly")
                                                    .id(690639L)
                                                    .audienceFilters(List.of(
                                                        FacetFilter.builder()
                                                            .fieldName("type")
                                                            .values(List.of(
                                                                FacetFilterValue.builder()
                                                                    .value("Spreadsheet")
                                                                    .relationType(RelationType.EQUALS)
                                                                    .build(),
                                                                FacetFilterValue.builder()
                                                                    .value("Presentation")
                                                                    .relationType(RelationType.EQUALS)
                                                                    .build()))
                                                            .build()))
                                                    .creator(Person.builder()
                                                        .name("George Clooney")
                                                        .obfuscatedId("abc123")
                                                        .metadata(PersonMetadata.builder()
                                                            .type(PersonMetadataType.FULL_TIME)
                                                            .title("Actor")
                                                            .department("Movies")
                                                            .email("george@example.com")
                                                            .location("Hollywood, CA")
                                                            .phone("6505551234")
                                                            .photoUrl("https://example.com/george.jpg")
                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                            .datasourceProfile(List.of(
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build(),
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build()))
                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                .suggestions(List.of(
                                                                    QuerySuggestion.builder()
                                                                        .query("app:github type:pull author:mortimer")
                                                                        .label("Mortimer's PRs")
                                                                        .datasource("github")
                                                                        .build()))
                                                                .build())
                                                            .inviteInfo(InviteInfo.builder()
                                                                .invites(List.of(
                                                                    ChannelInviteInfo.builder()
                                                                        .build(),
                                                                    ChannelInviteInfo.builder()
                                                                        .build(),
                                                                    ChannelInviteInfo.builder()
                                                                        .build()))
                                                                .build())
                                                            .badges(List.of(
                                                                Badge.builder()
                                                                    .key("deployment_name_new_hire")
                                                                    .displayName("New hire")
                                                                    .iconConfig(IconConfig.builder()
                                                                        .color("#343CED")
                                                                        .key("person_icon")
                                                                        .iconType(IconType.GLYPH)
                                                                        .name("user")
                                                                        .build())
                                                                    .build()))
                                                            .build())
                                                        .build())
                                                    .updatedBy(Person.builder()
                                                        .name("George Clooney")
                                                        .obfuscatedId("abc123")
                                                        .metadata(PersonMetadata.builder()
                                                            .type(PersonMetadataType.FULL_TIME)
                                                            .title("Actor")
                                                            .department("Movies")
                                                            .email("george@example.com")
                                                            .location("Hollywood, CA")
                                                            .phone("6505551234")
                                                            .photoUrl("https://example.com/george.jpg")
                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                            .datasourceProfile(List.of(
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build()))
                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                .suggestions(List.of(
                                                                    QuerySuggestion.builder()
                                                                        .query("app:github type:pull author:mortimer")
                                                                        .label("Mortimer's PRs")
                                                                        .datasource("github")
                                                                        .build()))
                                                                .build())
                                                            .inviteInfo(InviteInfo.builder()
                                                                .invites(List.of(
                                                                    ChannelInviteInfo.builder()
                                                                        .build(),
                                                                    ChannelInviteInfo.builder()
                                                                        .build(),
                                                                    ChannelInviteInfo.builder()
                                                                        .build()))
                                                                .build())
                                                            .badges(List.of(
                                                                Badge.builder()
                                                                    .key("deployment_name_new_hire")
                                                                    .displayName("New hire")
                                                                    .iconConfig(IconConfig.builder()
                                                                        .color("#343CED")
                                                                        .key("person_icon")
                                                                        .iconType(IconType.GLYPH)
                                                                        .name("user")
                                                                        .build())
                                                                    .build()))
                                                            .build())
                                                        .build())
                                                    .build())
                                                .code(Code.builder()
                                                    .repoName("scio")
                                                    .fileName("README.md")
                                                    .lines(List.of(
                                                        CodeLine.builder()
                                                            .build()))
                                                    .build())
                                                .shortcut(Shortcut.builder()
                                                    .inputAlias("<value>")
                                                    .createdBy(Person.builder()
                                                        .name("George Clooney")
                                                        .obfuscatedId("abc123")
                                                        .metadata(PersonMetadata.builder()
                                                            .type(PersonMetadataType.FULL_TIME)
                                                            .title("Actor")
                                                            .department("Movies")
                                                            .email("george@example.com")
                                                            .location("Hollywood, CA")
                                                            .phone("6505551234")
                                                            .photoUrl("https://example.com/george.jpg")
                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                            .datasourceProfile(List.of(
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build(),
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build(),
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build()))
                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                .suggestions(List.of(
                                                                    QuerySuggestion.builder()
                                                                        .query("app:github type:pull author:mortimer")
                                                                        .label("Mortimer's PRs")
                                                                        .datasource("github")
                                                                        .build()))
                                                                .build())
                                                            .inviteInfo(InviteInfo.builder()
                                                                .invites(List.of(
                                                                    ChannelInviteInfo.builder()
                                                                        .build(),
                                                                    ChannelInviteInfo.builder()
                                                                        .build(),
                                                                    ChannelInviteInfo.builder()
                                                                        .build()))
                                                                .build())
                                                            .badges(List.of(
                                                                Badge.builder()
                                                                    .key("deployment_name_new_hire")
                                                                    .displayName("New hire")
                                                                    .iconConfig(IconConfig.builder()
                                                                        .color("#343CED")
                                                                        .key("person_icon")
                                                                        .iconType(IconType.GLYPH)
                                                                        .name("user")
                                                                        .build())
                                                                    .build()))
                                                            .build())
                                                        .build())
                                                    .updatedBy(Person.builder()
                                                        .name("George Clooney")
                                                        .obfuscatedId("abc123")
                                                        .metadata(PersonMetadata.builder()
                                                            .type(PersonMetadataType.FULL_TIME)
                                                            .title("Actor")
                                                            .department("Movies")
                                                            .email("george@example.com")
                                                            .location("Hollywood, CA")
                                                            .phone("6505551234")
                                                            .photoUrl("https://example.com/george.jpg")
                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                            .datasourceProfile(List.of(
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build(),
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build()))
                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                .suggestions(List.of(
                                                                    QuerySuggestion.builder()
                                                                        .query("app:github type:pull author:mortimer")
                                                                        .label("Mortimer's PRs")
                                                                        .datasource("github")
                                                                        .build()))
                                                                .build())
                                                            .inviteInfo(InviteInfo.builder()
                                                                .invites(List.of(
                                                                    ChannelInviteInfo.builder()
                                                                        .build(),
                                                                    ChannelInviteInfo.builder()
                                                                        .build(),
                                                                    ChannelInviteInfo.builder()
                                                                        .build()))
                                                                .build())
                                                            .badges(List.of(
                                                                Badge.builder()
                                                                    .key("deployment_name_new_hire")
                                                                    .displayName("New hire")
                                                                    .iconConfig(IconConfig.builder()
                                                                        .color("#343CED")
                                                                        .key("person_icon")
                                                                        .iconType(IconType.GLYPH)
                                                                        .name("user")
                                                                        .build())
                                                                    .build()))
                                                            .build())
                                                        .build())
                                                    .destinationDocument(Document.builder()
                                                        .metadata(DocumentMetadata.builder()
                                                            .datasource("datasource")
                                                            .objectType("Feature Request")
                                                            .container("container")
                                                            .parentId("JIRA_EN-1337")
                                                            .mimeType("mimeType")
                                                            .documentId("documentId")
                                                            .createTime(OffsetDateTime.parse("2000-01-23T04:56:07.000Z"))
                                                            .updateTime(OffsetDateTime.parse("2000-01-23T04:56:07.000Z"))
                                                            .author(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .owner(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .components(List.of(
                                                                "Backend",
                                                                "Networking"))
                                                            .status("[\"Done\"]")
                                                            .assignedTo(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .updatedBy(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .verification(Verification.builder()
                                                                .state(State.VERIFIED)
                                                                .metadata(VerificationMetadata.builder()
                                                                    .lastVerifier(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .lastReminder(Reminder.builder()
                                                                        .assignee(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .remindAt(716571L)
                                                                        .requestor(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .build())
                                                                    .build())
                                                                .build())
                                                            .customData(Map.ofEntries(
                                                                Map.entry("someCustomField", CustomDataValue.builder()
                                                                    .build())))
                                                            .contactPerson(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .build())
                                                        .build())
                                                    .roles(List.of(
                                                        UserRoleSpecification.builder()
                                                            .role(UserRole.ANSWER_MODERATOR)
                                                            .person(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                        .suggestions(List.of(
                                                                            QuerySuggestion.builder()
                                                                                .query("app:github type:pull author:mortimer")
                                                                                .label("Mortimer's PRs")
                                                                                .datasource("github")
                                                                                .build()))
                                                                        .build())
                                                                    .inviteInfo(InviteInfo.builder()
                                                                        .invites(List.of(
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build()))
                                                                        .build())
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .build(),
                                                        UserRoleSpecification.builder()
                                                            .role(UserRole.ANSWER_MODERATOR)
                                                            .person(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                        .suggestions(List.of(
                                                                            QuerySuggestion.builder()
                                                                                .query("app:github type:pull author:mortimer")
                                                                                .label("Mortimer's PRs")
                                                                                .datasource("github")
                                                                                .build()))
                                                                        .build())
                                                                    .inviteInfo(InviteInfo.builder()
                                                                        .invites(List.of(
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build()))
                                                                        .build())
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .build()))
                                                    .build())
                                                .querySuggestions(QuerySuggestionList.builder()
                                                    .suggestions(List.of(
                                                        QuerySuggestion.builder()
                                                            .query("app:github type:pull author:mortimer")
                                                            .label("Mortimer's PRs")
                                                            .datasource("github")
                                                            .build()))
                                                    .person(Person.builder()
                                                        .name("George Clooney")
                                                        .obfuscatedId("abc123")
                                                        .metadata(PersonMetadata.builder()
                                                            .type(PersonMetadataType.FULL_TIME)
                                                            .title("Actor")
                                                            .department("Movies")
                                                            .email("george@example.com")
                                                            .location("Hollywood, CA")
                                                            .phone("6505551234")
                                                            .photoUrl("https://example.com/george.jpg")
                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                            .datasourceProfile(List.of(
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build()))
                                                            .badges(List.of(
                                                                Badge.builder()
                                                                    .key("deployment_name_new_hire")
                                                                    .displayName("New hire")
                                                                    .iconConfig(IconConfig.builder()
                                                                        .color("#343CED")
                                                                        .key("person_icon")
                                                                        .iconType(IconType.GLYPH)
                                                                        .name("user")
                                                                        .build())
                                                                    .build()))
                                                            .build())
                                                        .build())
                                                    .build())
                                                .build())
                                            .build(),
                                        StructuredTextItem.builder()
                                            .link("https://en.wikipedia.org/wiki/Diffuse_sky_radiation")
                                            .document(Document.builder()
                                                .metadata(DocumentMetadata.builder()
                                                    .datasource("datasource")
                                                    .objectType("Feature Request")
                                                    .container("container")
                                                    .parentId("JIRA_EN-1337")
                                                    .mimeType("mimeType")
                                                    .documentId("documentId")
                                                    .createTime(OffsetDateTime.parse("2000-01-23T04:56:07.000Z"))
                                                    .updateTime(OffsetDateTime.parse("2000-01-23T04:56:07.000Z"))
                                                    .author(Person.builder()
                                                        .name("George Clooney")
                                                        .obfuscatedId("abc123")
                                                        .relatedDocuments(List.of(
                                                            RelatedDocuments.builder()
                                                                .querySuggestion(QuerySuggestion.builder()
                                                                    .query("app:github type:pull author:mortimer")
                                                                    .searchProviderInfo(SearchProviderInfo.builder()
                                                                        .name("Google")
                                                                        .searchLinkUrlTemplate("https://www.google.com/search?q={query}&hl=en")
                                                                        .build())
                                                                    .label("Mortimer's PRs")
                                                                    .datasource("github")
                                                                    .requestOptions(SearchRequestOptions.builder()
                                                                        .facetBucketSize(843281L)
                                                                        .datasourceFilter("JIRA")
                                                                        .datasourcesFilter(List.of(
                                                                            "JIRA"))
                                                                        .queryOverridesFacetFilters(true)
                                                                        .facetFilters(List.of(
                                                                            FacetFilter.builder()
                                                                                .fieldName("type")
                                                                                .values(List.of(
                                                                                    FacetFilterValue.builder()
                                                                                        .value("Spreadsheet")
                                                                                        .relationType(RelationType.EQUALS)
                                                                                        .build(),
                                                                                    FacetFilterValue.builder()
                                                                                        .value("Presentation")
                                                                                        .relationType(RelationType.EQUALS)
                                                                                        .build()))
                                                                                .build()))
                                                                        .facetFilterSets(List.of(
                                                                            FacetFilterSet.builder()
                                                                                .filters(List.of(
                                                                                    FacetFilter.builder()
                                                                                        .fieldName("type")
                                                                                        .values(List.of(
                                                                                            FacetFilterValue.builder()
                                                                                                .value("Spreadsheet")
                                                                                                .relationType(RelationType.EQUALS)
                                                                                                .build(),
                                                                                            FacetFilterValue.builder()
                                                                                                .value("Presentation")
                                                                                                .relationType(RelationType.EQUALS)
                                                                                                .build()))
                                                                                        .build()))
                                                                                .build(),
                                                                            FacetFilterSet.builder()
                                                                                .filters(List.of(
                                                                                    FacetFilter.builder()
                                                                                        .fieldName("type")
                                                                                        .values(List.of(
                                                                                            FacetFilterValue.builder()
                                                                                                .value("Spreadsheet")
                                                                                                .relationType(RelationType.EQUALS)
                                                                                                .build(),
                                                                                            FacetFilterValue.builder()
                                                                                                .value("Presentation")
                                                                                                .relationType(RelationType.EQUALS)
                                                                                                .build()))
                                                                                        .build()))
                                                                                .build()))
                                                                        .authTokens(List.of(
                                                                            AuthToken.builder()
                                                                                .accessToken("123abc")
                                                                                .datasource("gmail")
                                                                                .scope("email profile https://www.googleapis.com/auth/gmail.readonly")
                                                                                .tokenType("Bearer")
                                                                                .authUser("1")
                                                                                .build()))
                                                                        .build())
                                                                    .ranges(List.of(
                                                                        TextRange.builder()
                                                                            .startIndex(925801L)
                                                                            .build(),
                                                                        TextRange.builder()
                                                                            .startIndex(925801L)
                                                                            .build(),
                                                                        TextRange.builder()
                                                                            .startIndex(925801L)
                                                                            .build()))
                                                                    .inputDetails(SearchRequestInputDetails.builder()
                                                                        .hasCopyPaste(true)
                                                                        .build())
                                                                    .build())
                                                                .results(List.of(
                                                                    SearchResult.builder()
                                                                        .url("https://example.com/foo/bar")
                                                                        .title("title")
                                                                        .nativeAppUrl("slack://foo/bar")
                                                                        .snippets(List.of(
                                                                            SearchResultSnippet.builder()
                                                                                .snippet("snippet")
                                                                                .mimeType("mimeType")
                                                                                .build()))
                                                                        .build()))
                                                                .build(),
                                                            RelatedDocuments.builder()
                                                                .querySuggestion(QuerySuggestion.builder()
                                                                    .query("app:github type:pull author:mortimer")
                                                                    .searchProviderInfo(SearchProviderInfo.builder()
                                                                        .name("Google")
                                                                        .searchLinkUrlTemplate("https://www.google.com/search?q={query}&hl=en")
                                                                        .build())
                                                                    .label("Mortimer's PRs")
                                                                    .datasource("github")
                                                                    .requestOptions(SearchRequestOptions.builder()
                                                                        .facetBucketSize(843281L)
                                                                        .datasourceFilter("JIRA")
                                                                        .datasourcesFilter(List.of(
                                                                            "JIRA"))
                                                                        .queryOverridesFacetFilters(true)
                                                                        .facetFilters(List.of(
                                                                            FacetFilter.builder()
                                                                                .fieldName("type")
                                                                                .values(List.of(
                                                                                    FacetFilterValue.builder()
                                                                                        .value("Spreadsheet")
                                                                                        .relationType(RelationType.EQUALS)
                                                                                        .build(),
                                                                                    FacetFilterValue.builder()
                                                                                        .value("Presentation")
                                                                                        .relationType(RelationType.EQUALS)
                                                                                        .build()))
                                                                                .build()))
                                                                        .facetFilterSets(List.of(
                                                                            FacetFilterSet.builder()
                                                                                .filters(List.of(
                                                                                    FacetFilter.builder()
                                                                                        .fieldName("type")
                                                                                        .values(List.of(
                                                                                            FacetFilterValue.builder()
                                                                                                .value("Spreadsheet")
                                                                                                .relationType(RelationType.EQUALS)
                                                                                                .build(),
                                                                                            FacetFilterValue.builder()
                                                                                                .value("Presentation")
                                                                                                .relationType(RelationType.EQUALS)
                                                                                                .build()))
                                                                                        .build()))
                                                                                .build(),
                                                                            FacetFilterSet.builder()
                                                                                .filters(List.of(
                                                                                    FacetFilter.builder()
                                                                                        .fieldName("type")
                                                                                        .values(List.of(
                                                                                            FacetFilterValue.builder()
                                                                                                .value("Spreadsheet")
                                                                                                .relationType(RelationType.EQUALS)
                                                                                                .build(),
                                                                                            FacetFilterValue.builder()
                                                                                                .value("Presentation")
                                                                                                .relationType(RelationType.EQUALS)
                                                                                                .build()))
                                                                                        .build()))
                                                                                .build()))
                                                                        .authTokens(List.of(
                                                                            AuthToken.builder()
                                                                                .accessToken("123abc")
                                                                                .datasource("gmail")
                                                                                .scope("email profile https://www.googleapis.com/auth/gmail.readonly")
                                                                                .tokenType("Bearer")
                                                                                .authUser("1")
                                                                                .build()))
                                                                        .build())
                                                                    .ranges(List.of(
                                                                        TextRange.builder()
                                                                            .startIndex(925801L)
                                                                            .build(),
                                                                        TextRange.builder()
                                                                            .startIndex(925801L)
                                                                            .build(),
                                                                        TextRange.builder()
                                                                            .startIndex(925801L)
                                                                            .build()))
                                                                    .inputDetails(SearchRequestInputDetails.builder()
                                                                        .hasCopyPaste(true)
                                                                        .build())
                                                                    .build())
                                                                .results(List.of(
                                                                    SearchResult.builder()
                                                                        .url("https://example.com/foo/bar")
                                                                        .title("title")
                                                                        .nativeAppUrl("slack://foo/bar")
                                                                        .snippets(List.of(
                                                                            SearchResultSnippet.builder()
                                                                                .snippet("snippet")
                                                                                .mimeType("mimeType")
                                                                                .build()))
                                                                        .build()))
                                                                .build(),
                                                            RelatedDocuments.builder()
                                                                .querySuggestion(QuerySuggestion.builder()
                                                                    .query("app:github type:pull author:mortimer")
                                                                    .searchProviderInfo(SearchProviderInfo.builder()
                                                                        .name("Google")
                                                                        .searchLinkUrlTemplate("https://www.google.com/search?q={query}&hl=en")
                                                                        .build())
                                                                    .label("Mortimer's PRs")
                                                                    .datasource("github")
                                                                    .requestOptions(SearchRequestOptions.builder()
                                                                        .facetBucketSize(843281L)
                                                                        .datasourceFilter("JIRA")
                                                                        .datasourcesFilter(List.of(
                                                                            "JIRA"))
                                                                        .queryOverridesFacetFilters(true)
                                                                        .facetFilters(List.of(
                                                                            FacetFilter.builder()
                                                                                .fieldName("type")
                                                                                .values(List.of(
                                                                                    FacetFilterValue.builder()
                                                                                        .value("Spreadsheet")
                                                                                        .relationType(RelationType.EQUALS)
                                                                                        .build(),
                                                                                    FacetFilterValue.builder()
                                                                                        .value("Presentation")
                                                                                        .relationType(RelationType.EQUALS)
                                                                                        .build()))
                                                                                .build()))
                                                                        .facetFilterSets(List.of(
                                                                            FacetFilterSet.builder()
                                                                                .filters(List.of(
                                                                                    FacetFilter.builder()
                                                                                        .fieldName("type")
                                                                                        .values(List.of(
                                                                                            FacetFilterValue.builder()
                                                                                                .value("Spreadsheet")
                                                                                                .relationType(RelationType.EQUALS)
                                                                                                .build(),
                                                                                            FacetFilterValue.builder()
                                                                                                .value("Presentation")
                                                                                                .relationType(RelationType.EQUALS)
                                                                                                .build()))
                                                                                        .build()))
                                                                                .build(),
                                                                            FacetFilterSet.builder()
                                                                                .filters(List.of(
                                                                                    FacetFilter.builder()
                                                                                        .fieldName("type")
                                                                                        .values(List.of(
                                                                                            FacetFilterValue.builder()
                                                                                                .value("Spreadsheet")
                                                                                                .relationType(RelationType.EQUALS)
                                                                                                .build(),
                                                                                            FacetFilterValue.builder()
                                                                                                .value("Presentation")
                                                                                                .relationType(RelationType.EQUALS)
                                                                                                .build()))
                                                                                        .build()))
                                                                                .build()))
                                                                        .authTokens(List.of(
                                                                            AuthToken.builder()
                                                                                .accessToken("123abc")
                                                                                .datasource("gmail")
                                                                                .scope("email profile https://www.googleapis.com/auth/gmail.readonly")
                                                                                .tokenType("Bearer")
                                                                                .authUser("1")
                                                                                .build()))
                                                                        .build())
                                                                    .ranges(List.of(
                                                                        TextRange.builder()
                                                                            .startIndex(925801L)
                                                                            .build(),
                                                                        TextRange.builder()
                                                                            .startIndex(925801L)
                                                                            .build(),
                                                                        TextRange.builder()
                                                                            .startIndex(925801L)
                                                                            .build()))
                                                                    .inputDetails(SearchRequestInputDetails.builder()
                                                                        .hasCopyPaste(true)
                                                                        .build())
                                                                    .build())
                                                                .results(List.of(
                                                                    SearchResult.builder()
                                                                        .url("https://example.com/foo/bar")
                                                                        .title("title")
                                                                        .nativeAppUrl("slack://foo/bar")
                                                                        .snippets(List.of(
                                                                            SearchResultSnippet.builder()
                                                                                .snippet("snippet")
                                                                                .mimeType("mimeType")
                                                                                .build()))
                                                                        .build()))
                                                                .build()))
                                                        .metadata(PersonMetadata.builder()
                                                            .type(PersonMetadataType.FULL_TIME)
                                                            .title("Actor")
                                                            .department("Movies")
                                                            .email("george@example.com")
                                                            .location("Hollywood, CA")
                                                            .phone("6505551234")
                                                            .photoUrl("https://example.com/george.jpg")
                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                            .datasourceProfile(List.of(
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build(),
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build(),
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build()))
                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                .suggestions(List.of(
                                                                    QuerySuggestion.builder()
                                                                        .query("app:github type:pull author:mortimer")
                                                                        .label("Mortimer's PRs")
                                                                        .datasource("github")
                                                                        .build()))
                                                                .build())
                                                            .inviteInfo(InviteInfo.builder()
                                                                .invites(List.of(
                                                                    ChannelInviteInfo.builder()
                                                                        .build(),
                                                                    ChannelInviteInfo.builder()
                                                                        .build(),
                                                                    ChannelInviteInfo.builder()
                                                                        .build()))
                                                                .build())
                                                            .customFields(List.of(
                                                                CustomFieldData.builder()
                                                                    .label("<value>")
                                                                    .values(List.of(
                                                                        CustomFieldValue.of(CustomFieldValueStr.builder()
                                                                            .build()),
                                                                        CustomFieldValue.of(CustomFieldValueStr.builder()
                                                                            .build())))
                                                                    .build(),
                                                                CustomFieldData.builder()
                                                                    .label("<value>")
                                                                    .values(List.of(
                                                                        CustomFieldValue.of(CustomFieldValueStr.builder()
                                                                            .build()),
                                                                        CustomFieldValue.of(CustomFieldValueStr.builder()
                                                                            .build())))
                                                                    .build(),
                                                                CustomFieldData.builder()
                                                                    .label("<value>")
                                                                    .values(List.of(
                                                                        CustomFieldValue.of(CustomFieldValueStr.builder()
                                                                            .build()),
                                                                        CustomFieldValue.of(CustomFieldValueStr.builder()
                                                                            .build())))
                                                                    .build()))
                                                            .badges(List.of(
                                                                Badge.builder()
                                                                    .key("deployment_name_new_hire")
                                                                    .displayName("New hire")
                                                                    .iconConfig(IconConfig.builder()
                                                                        .color("#343CED")
                                                                        .key("person_icon")
                                                                        .iconType(IconType.GLYPH)
                                                                        .name("user")
                                                                        .build())
                                                                    .build()))
                                                            .build())
                                                        .build())
                                                    .owner(Person.builder()
                                                        .name("George Clooney")
                                                        .obfuscatedId("abc123")
                                                        .metadata(PersonMetadata.builder()
                                                            .type(PersonMetadataType.FULL_TIME)
                                                            .title("Actor")
                                                            .department("Movies")
                                                            .email("george@example.com")
                                                            .location("Hollywood, CA")
                                                            .phone("6505551234")
                                                            .photoUrl("https://example.com/george.jpg")
                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                            .datasourceProfile(List.of(
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build(),
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build(),
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build()))
                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                .suggestions(List.of(
                                                                    QuerySuggestion.builder()
                                                                        .query("app:github type:pull author:mortimer")
                                                                        .label("Mortimer's PRs")
                                                                        .datasource("github")
                                                                        .build()))
                                                                .build())
                                                            .inviteInfo(InviteInfo.builder()
                                                                .invites(List.of(
                                                                    ChannelInviteInfo.builder()
                                                                        .build(),
                                                                    ChannelInviteInfo.builder()
                                                                        .build(),
                                                                    ChannelInviteInfo.builder()
                                                                        .build()))
                                                                .build())
                                                            .badges(List.of(
                                                                Badge.builder()
                                                                    .key("deployment_name_new_hire")
                                                                    .displayName("New hire")
                                                                    .iconConfig(IconConfig.builder()
                                                                        .color("#343CED")
                                                                        .key("person_icon")
                                                                        .iconType(IconType.GLYPH)
                                                                        .name("user")
                                                                        .build())
                                                                    .build()))
                                                            .build())
                                                        .build())
                                                    .mentionedPeople(List.of(
                                                        Person.builder()
                                                            .name("George Clooney")
                                                            .obfuscatedId("abc123")
                                                            .build()))
                                                    .components(List.of(
                                                        "Backend",
                                                        "Networking"))
                                                    .status("[\"Done\"]")
                                                    .pins(List.of(
                                                        PinDocument.builder()
                                                            .documentId("<id>")
                                                            .audienceFilters(List.of(
                                                                FacetFilter.builder()
                                                                    .fieldName("type")
                                                                    .values(List.of(
                                                                        FacetFilterValue.builder()
                                                                            .value("Spreadsheet")
                                                                            .relationType(RelationType.EQUALS)
                                                                            .build(),
                                                                        FacetFilterValue.builder()
                                                                            .value("Presentation")
                                                                            .relationType(RelationType.EQUALS)
                                                                            .build()))
                                                                    .build()))
                                                            .attribution(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                        .suggestions(List.of(
                                                                            QuerySuggestion.builder()
                                                                                .query("app:github type:pull author:mortimer")
                                                                                .label("Mortimer's PRs")
                                                                                .datasource("github")
                                                                                .build()))
                                                                        .build())
                                                                    .inviteInfo(InviteInfo.builder()
                                                                        .invites(List.of(
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build()))
                                                                        .build())
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .updatedBy(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                        .suggestions(List.of(
                                                                            QuerySuggestion.builder()
                                                                                .query("app:github type:pull author:mortimer")
                                                                                .label("Mortimer's PRs")
                                                                                .datasource("github")
                                                                                .build()))
                                                                        .build())
                                                                    .inviteInfo(InviteInfo.builder()
                                                                        .invites(List.of(
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build()))
                                                                        .build())
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .build(),
                                                        PinDocument.builder()
                                                            .documentId("<id>")
                                                            .audienceFilters(List.of(
                                                                FacetFilter.builder()
                                                                    .fieldName("type")
                                                                    .values(List.of(
                                                                        FacetFilterValue.builder()
                                                                            .value("Spreadsheet")
                                                                            .relationType(RelationType.EQUALS)
                                                                            .build(),
                                                                        FacetFilterValue.builder()
                                                                            .value("Presentation")
                                                                            .relationType(RelationType.EQUALS)
                                                                            .build()))
                                                                    .build()))
                                                            .attribution(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                        .suggestions(List.of(
                                                                            QuerySuggestion.builder()
                                                                                .query("app:github type:pull author:mortimer")
                                                                                .label("Mortimer's PRs")
                                                                                .datasource("github")
                                                                                .build()))
                                                                        .build())
                                                                    .inviteInfo(InviteInfo.builder()
                                                                        .invites(List.of(
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build()))
                                                                        .build())
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .updatedBy(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                        .suggestions(List.of(
                                                                            QuerySuggestion.builder()
                                                                                .query("app:github type:pull author:mortimer")
                                                                                .label("Mortimer's PRs")
                                                                                .datasource("github")
                                                                                .build()))
                                                                        .build())
                                                                    .inviteInfo(InviteInfo.builder()
                                                                        .invites(List.of(
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build()))
                                                                        .build())
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .build()))
                                                    .assignedTo(Person.builder()
                                                        .name("George Clooney")
                                                        .obfuscatedId("abc123")
                                                        .metadata(PersonMetadata.builder()
                                                            .type(PersonMetadataType.FULL_TIME)
                                                            .title("Actor")
                                                            .department("Movies")
                                                            .email("george@example.com")
                                                            .location("Hollywood, CA")
                                                            .phone("6505551234")
                                                            .photoUrl("https://example.com/george.jpg")
                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                            .datasourceProfile(List.of(
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build(),
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build(),
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build()))
                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                .suggestions(List.of(
                                                                    QuerySuggestion.builder()
                                                                        .query("app:github type:pull author:mortimer")
                                                                        .label("Mortimer's PRs")
                                                                        .datasource("github")
                                                                        .build()))
                                                                .build())
                                                            .inviteInfo(InviteInfo.builder()
                                                                .invites(List.of(
                                                                    ChannelInviteInfo.builder()
                                                                        .build(),
                                                                    ChannelInviteInfo.builder()
                                                                        .build(),
                                                                    ChannelInviteInfo.builder()
                                                                        .build()))
                                                                .build())
                                                            .badges(List.of(
                                                                Badge.builder()
                                                                    .key("deployment_name_new_hire")
                                                                    .displayName("New hire")
                                                                    .iconConfig(IconConfig.builder()
                                                                        .color("#343CED")
                                                                        .key("person_icon")
                                                                        .iconType(IconType.GLYPH)
                                                                        .name("user")
                                                                        .build())
                                                                    .build()))
                                                            .build())
                                                        .build())
                                                    .updatedBy(Person.builder()
                                                        .name("George Clooney")
                                                        .obfuscatedId("abc123")
                                                        .metadata(PersonMetadata.builder()
                                                            .type(PersonMetadataType.FULL_TIME)
                                                            .title("Actor")
                                                            .department("Movies")
                                                            .email("george@example.com")
                                                            .location("Hollywood, CA")
                                                            .phone("6505551234")
                                                            .photoUrl("https://example.com/george.jpg")
                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                            .datasourceProfile(List.of(
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build(),
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build(),
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build()))
                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                .suggestions(List.of(
                                                                    QuerySuggestion.builder()
                                                                        .query("app:github type:pull author:mortimer")
                                                                        .label("Mortimer's PRs")
                                                                        .datasource("github")
                                                                        .build()))
                                                                .build())
                                                            .inviteInfo(InviteInfo.builder()
                                                                .invites(List.of(
                                                                    ChannelInviteInfo.builder()
                                                                        .build(),
                                                                    ChannelInviteInfo.builder()
                                                                        .build(),
                                                                    ChannelInviteInfo.builder()
                                                                        .build()))
                                                                .build())
                                                            .badges(List.of(
                                                                Badge.builder()
                                                                    .key("deployment_name_new_hire")
                                                                    .displayName("New hire")
                                                                    .iconConfig(IconConfig.builder()
                                                                        .color("#343CED")
                                                                        .key("person_icon")
                                                                        .iconType(IconType.GLYPH)
                                                                        .name("user")
                                                                        .build())
                                                                    .build()))
                                                            .build())
                                                        .build())
                                                    .collections(List.of(
                                                        Collection.builder()
                                                            .name("<value>")
                                                            .description("perfectly flustered dimly")
                                                            .id(83242L)
                                                            .addedRoles(List.of(
                                                                UserRoleSpecification.builder()
                                                                    .role(UserRole.ANSWER_MODERATOR)
                                                                    .person(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                .suggestions(List.of(
                                                                                    QuerySuggestion.builder()
                                                                                        .query("app:github type:pull author:mortimer")
                                                                                        .label("Mortimer's PRs")
                                                                                        .datasource("github")
                                                                                        .build()))
                                                                                .build())
                                                                            .inviteInfo(InviteInfo.builder()
                                                                                .invites(List.of(
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build()))
                                                                                .build())
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .build(),
                                                                UserRoleSpecification.builder()
                                                                    .role(UserRole.ANSWER_MODERATOR)
                                                                    .person(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                .suggestions(List.of(
                                                                                    QuerySuggestion.builder()
                                                                                        .query("app:github type:pull author:mortimer")
                                                                                        .label("Mortimer's PRs")
                                                                                        .datasource("github")
                                                                                        .build()))
                                                                                .build())
                                                                            .inviteInfo(InviteInfo.builder()
                                                                                .invites(List.of(
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build()))
                                                                                .build())
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .build(),
                                                                UserRoleSpecification.builder()
                                                                    .role(UserRole.ANSWER_MODERATOR)
                                                                    .person(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                .suggestions(List.of(
                                                                                    QuerySuggestion.builder()
                                                                                        .query("app:github type:pull author:mortimer")
                                                                                        .label("Mortimer's PRs")
                                                                                        .datasource("github")
                                                                                        .build()))
                                                                                .build())
                                                                            .inviteInfo(InviteInfo.builder()
                                                                                .invites(List.of(
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build()))
                                                                                .build())
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .build()))
                                                            .removedRoles(List.of(
                                                                UserRoleSpecification.builder()
                                                                    .role(UserRole.VERIFIER)
                                                                    .person(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                .suggestions(List.of(
                                                                                    QuerySuggestion.builder()
                                                                                        .query("app:github type:pull author:mortimer")
                                                                                        .label("Mortimer's PRs")
                                                                                        .datasource("github")
                                                                                        .build()))
                                                                                .build())
                                                                            .inviteInfo(InviteInfo.builder()
                                                                                .invites(List.of(
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build()))
                                                                                .build())
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .build()))
                                                            .audienceFilters(List.of(
                                                                FacetFilter.builder()
                                                                    .fieldName("type")
                                                                    .values(List.of(
                                                                        FacetFilterValue.builder()
                                                                            .value("Spreadsheet")
                                                                            .relationType(RelationType.EQUALS)
                                                                            .build(),
                                                                        FacetFilterValue.builder()
                                                                            .value("Presentation")
                                                                            .relationType(RelationType.EQUALS)
                                                                            .build()))
                                                                    .build()))
                                                            .creator(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                        .suggestions(List.of(
                                                                            QuerySuggestion.builder()
                                                                                .query("app:github type:pull author:mortimer")
                                                                                .label("Mortimer's PRs")
                                                                                .datasource("github")
                                                                                .build()))
                                                                        .build())
                                                                    .inviteInfo(InviteInfo.builder()
                                                                        .invites(List.of(
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build()))
                                                                        .build())
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .updatedBy(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                        .suggestions(List.of(
                                                                            QuerySuggestion.builder()
                                                                                .query("app:github type:pull author:mortimer")
                                                                                .label("Mortimer's PRs")
                                                                                .datasource("github")
                                                                                .build()))
                                                                        .build())
                                                                    .inviteInfo(InviteInfo.builder()
                                                                        .invites(List.of(
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build()))
                                                                        .build())
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .items(List.of(
                                                                CollectionItem.builder()
                                                                    .collectionId(420359L)
                                                                    .itemType(CollectionItemItemType.COLLECTION)
                                                                    .createdBy(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                .suggestions(List.of(
                                                                                    QuerySuggestion.builder()
                                                                                        .query("app:github type:pull author:mortimer")
                                                                                        .label("Mortimer's PRs")
                                                                                        .datasource("github")
                                                                                        .build()))
                                                                                .build())
                                                                            .inviteInfo(InviteInfo.builder()
                                                                                .invites(List.of(
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build()))
                                                                                .build())
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .shortcut(Shortcut.builder()
                                                                        .inputAlias("<value>")
                                                                        .createdBy(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .updatedBy(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .roles(List.of(
                                                                            UserRoleSpecification.builder()
                                                                                .role(UserRole.ANSWER_MODERATOR)
                                                                                .person(Person.builder()
                                                                                    .name("George Clooney")
                                                                                    .obfuscatedId("abc123")
                                                                                    .metadata(PersonMetadata.builder()
                                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                                        .title("Actor")
                                                                                        .department("Movies")
                                                                                        .email("george@example.com")
                                                                                        .location("Hollywood, CA")
                                                                                        .phone("6505551234")
                                                                                        .photoUrl("https://example.com/george.jpg")
                                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                                        .datasourceProfile(List.of(
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build(),
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build()))
                                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                                            .suggestions(List.of(
                                                                                                QuerySuggestion.builder()
                                                                                                    .query("app:github type:pull author:mortimer")
                                                                                                    .label("Mortimer's PRs")
                                                                                                    .datasource("github")
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .inviteInfo(InviteInfo.builder()
                                                                                            .invites(List.of(
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .badges(List.of(
                                                                                            Badge.builder()
                                                                                                .key("deployment_name_new_hire")
                                                                                                .displayName("New hire")
                                                                                                .iconConfig(IconConfig.builder()
                                                                                                    .color("#343CED")
                                                                                                    .key("person_icon")
                                                                                                    .iconType(IconType.GLYPH)
                                                                                                    .name("user")
                                                                                                    .build())
                                                                                                .build()))
                                                                                        .build())
                                                                                    .build())
                                                                                .build(),
                                                                            UserRoleSpecification.builder()
                                                                                .role(UserRole.ANSWER_MODERATOR)
                                                                                .person(Person.builder()
                                                                                    .name("George Clooney")
                                                                                    .obfuscatedId("abc123")
                                                                                    .metadata(PersonMetadata.builder()
                                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                                        .title("Actor")
                                                                                        .department("Movies")
                                                                                        .email("george@example.com")
                                                                                        .location("Hollywood, CA")
                                                                                        .phone("6505551234")
                                                                                        .photoUrl("https://example.com/george.jpg")
                                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                                        .datasourceProfile(List.of(
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build(),
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build()))
                                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                                            .suggestions(List.of(
                                                                                                QuerySuggestion.builder()
                                                                                                    .query("app:github type:pull author:mortimer")
                                                                                                    .label("Mortimer's PRs")
                                                                                                    .datasource("github")
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .inviteInfo(InviteInfo.builder()
                                                                                            .invites(List.of(
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .badges(List.of(
                                                                                            Badge.builder()
                                                                                                .key("deployment_name_new_hire")
                                                                                                .displayName("New hire")
                                                                                                .iconConfig(IconConfig.builder()
                                                                                                    .color("#343CED")
                                                                                                    .key("person_icon")
                                                                                                    .iconType(IconType.GLYPH)
                                                                                                    .name("user")
                                                                                                    .build())
                                                                                                .build()))
                                                                                        .build())
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build(),
                                                                CollectionItem.builder()
                                                                    .collectionId(420359L)
                                                                    .itemType(CollectionItemItemType.COLLECTION)
                                                                    .createdBy(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                .suggestions(List.of(
                                                                                    QuerySuggestion.builder()
                                                                                        .query("app:github type:pull author:mortimer")
                                                                                        .label("Mortimer's PRs")
                                                                                        .datasource("github")
                                                                                        .build()))
                                                                                .build())
                                                                            .inviteInfo(InviteInfo.builder()
                                                                                .invites(List.of(
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build()))
                                                                                .build())
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .shortcut(Shortcut.builder()
                                                                        .inputAlias("<value>")
                                                                        .createdBy(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .updatedBy(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .roles(List.of(
                                                                            UserRoleSpecification.builder()
                                                                                .role(UserRole.ANSWER_MODERATOR)
                                                                                .person(Person.builder()
                                                                                    .name("George Clooney")
                                                                                    .obfuscatedId("abc123")
                                                                                    .metadata(PersonMetadata.builder()
                                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                                        .title("Actor")
                                                                                        .department("Movies")
                                                                                        .email("george@example.com")
                                                                                        .location("Hollywood, CA")
                                                                                        .phone("6505551234")
                                                                                        .photoUrl("https://example.com/george.jpg")
                                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                                        .datasourceProfile(List.of(
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build(),
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build()))
                                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                                            .suggestions(List.of(
                                                                                                QuerySuggestion.builder()
                                                                                                    .query("app:github type:pull author:mortimer")
                                                                                                    .label("Mortimer's PRs")
                                                                                                    .datasource("github")
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .inviteInfo(InviteInfo.builder()
                                                                                            .invites(List.of(
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .badges(List.of(
                                                                                            Badge.builder()
                                                                                                .key("deployment_name_new_hire")
                                                                                                .displayName("New hire")
                                                                                                .iconConfig(IconConfig.builder()
                                                                                                    .color("#343CED")
                                                                                                    .key("person_icon")
                                                                                                    .iconType(IconType.GLYPH)
                                                                                                    .name("user")
                                                                                                    .build())
                                                                                                .build()))
                                                                                        .build())
                                                                                    .build())
                                                                                .build(),
                                                                            UserRoleSpecification.builder()
                                                                                .role(UserRole.ANSWER_MODERATOR)
                                                                                .person(Person.builder()
                                                                                    .name("George Clooney")
                                                                                    .obfuscatedId("abc123")
                                                                                    .metadata(PersonMetadata.builder()
                                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                                        .title("Actor")
                                                                                        .department("Movies")
                                                                                        .email("george@example.com")
                                                                                        .location("Hollywood, CA")
                                                                                        .phone("6505551234")
                                                                                        .photoUrl("https://example.com/george.jpg")
                                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                                        .datasourceProfile(List.of(
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build(),
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build()))
                                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                                            .suggestions(List.of(
                                                                                                QuerySuggestion.builder()
                                                                                                    .query("app:github type:pull author:mortimer")
                                                                                                    .label("Mortimer's PRs")
                                                                                                    .datasource("github")
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .inviteInfo(InviteInfo.builder()
                                                                                            .invites(List.of(
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .badges(List.of(
                                                                                            Badge.builder()
                                                                                                .key("deployment_name_new_hire")
                                                                                                .displayName("New hire")
                                                                                                .iconConfig(IconConfig.builder()
                                                                                                    .color("#343CED")
                                                                                                    .key("person_icon")
                                                                                                    .iconType(IconType.GLYPH)
                                                                                                    .name("user")
                                                                                                    .build())
                                                                                                .build()))
                                                                                        .build())
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build()))
                                                            .build()))
                                                    .interactions(DocumentInteractions.builder()
                                                        .reacts(List.of(
                                                            Reaction.builder()
                                                                .reactors(List.of(
                                                                    Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .build()))
                                                                .build(),
                                                            Reaction.builder()
                                                                .reactors(List.of(
                                                                    Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .build()))
                                                                .build()))
                                                        .shares(List.of(
                                                            Share.builder()
                                                                .numDaysAgo(582012L)
                                                                .sharer(Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .metadata(PersonMetadata.builder()
                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                        .title("Actor")
                                                                        .department("Movies")
                                                                        .email("george@example.com")
                                                                        .location("Hollywood, CA")
                                                                        .phone("6505551234")
                                                                        .photoUrl("https://example.com/george.jpg")
                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                        .datasourceProfile(List.of(
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build()))
                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                            .suggestions(List.of(
                                                                                QuerySuggestion.builder()
                                                                                    .query("app:github type:pull author:mortimer")
                                                                                    .label("Mortimer's PRs")
                                                                                    .datasource("github")
                                                                                    .build()))
                                                                            .build())
                                                                        .inviteInfo(InviteInfo.builder()
                                                                            .invites(List.of(
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build()))
                                                                            .build())
                                                                        .badges(List.of(
                                                                            Badge.builder()
                                                                                .key("deployment_name_new_hire")
                                                                                .displayName("New hire")
                                                                                .iconConfig(IconConfig.builder()
                                                                                    .color("#343CED")
                                                                                    .key("person_icon")
                                                                                    .iconType(IconType.GLYPH)
                                                                                    .name("user")
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build())
                                                                .build()))
                                                        .build())
                                                    .verification(Verification.builder()
                                                        .state(State.DEPRECATED)
                                                        .metadata(VerificationMetadata.builder()
                                                            .lastVerifier(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                        .suggestions(List.of(
                                                                            QuerySuggestion.builder()
                                                                                .query("app:github type:pull author:mortimer")
                                                                                .label("Mortimer's PRs")
                                                                                .datasource("github")
                                                                                .build()))
                                                                        .build())
                                                                    .inviteInfo(InviteInfo.builder()
                                                                        .invites(List.of(
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build()))
                                                                        .build())
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .reminders(List.of(
                                                                Reminder.builder()
                                                                    .assignee(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                .suggestions(List.of(
                                                                                    QuerySuggestion.builder()
                                                                                        .query("app:github type:pull author:mortimer")
                                                                                        .label("Mortimer's PRs")
                                                                                        .datasource("github")
                                                                                        .build()))
                                                                                .build())
                                                                            .inviteInfo(InviteInfo.builder()
                                                                                .invites(List.of(
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build()))
                                                                                .build())
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .remindAt(785622L)
                                                                    .requestor(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                .suggestions(List.of(
                                                                                    QuerySuggestion.builder()
                                                                                        .query("app:github type:pull author:mortimer")
                                                                                        .label("Mortimer's PRs")
                                                                                        .datasource("github")
                                                                                        .build()))
                                                                                .build())
                                                                            .inviteInfo(InviteInfo.builder()
                                                                                .invites(List.of(
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build()))
                                                                                .build())
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .build(),
                                                                Reminder.builder()
                                                                    .assignee(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                .suggestions(List.of(
                                                                                    QuerySuggestion.builder()
                                                                                        .query("app:github type:pull author:mortimer")
                                                                                        .label("Mortimer's PRs")
                                                                                        .datasource("github")
                                                                                        .build()))
                                                                                .build())
                                                                            .inviteInfo(InviteInfo.builder()
                                                                                .invites(List.of(
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build()))
                                                                                .build())
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .remindAt(785622L)
                                                                    .requestor(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                .suggestions(List.of(
                                                                                    QuerySuggestion.builder()
                                                                                        .query("app:github type:pull author:mortimer")
                                                                                        .label("Mortimer's PRs")
                                                                                        .datasource("github")
                                                                                        .build()))
                                                                                .build())
                                                                            .inviteInfo(InviteInfo.builder()
                                                                                .invites(List.of(
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build()))
                                                                                .build())
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .build(),
                                                                Reminder.builder()
                                                                    .assignee(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                .suggestions(List.of(
                                                                                    QuerySuggestion.builder()
                                                                                        .query("app:github type:pull author:mortimer")
                                                                                        .label("Mortimer's PRs")
                                                                                        .datasource("github")
                                                                                        .build()))
                                                                                .build())
                                                                            .inviteInfo(InviteInfo.builder()
                                                                                .invites(List.of(
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build()))
                                                                                .build())
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .remindAt(785622L)
                                                                    .requestor(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                .suggestions(List.of(
                                                                                    QuerySuggestion.builder()
                                                                                        .query("app:github type:pull author:mortimer")
                                                                                        .label("Mortimer's PRs")
                                                                                        .datasource("github")
                                                                                        .build()))
                                                                                .build())
                                                                            .inviteInfo(InviteInfo.builder()
                                                                                .invites(List.of(
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build()))
                                                                                .build())
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .build()))
                                                            .lastReminder(Reminder.builder()
                                                                .assignee(Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .metadata(PersonMetadata.builder()
                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                        .title("Actor")
                                                                        .department("Movies")
                                                                        .email("george@example.com")
                                                                        .location("Hollywood, CA")
                                                                        .phone("6505551234")
                                                                        .photoUrl("https://example.com/george.jpg")
                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                        .datasourceProfile(List.of(
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build()))
                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                            .suggestions(List.of(
                                                                                QuerySuggestion.builder()
                                                                                    .query("app:github type:pull author:mortimer")
                                                                                    .label("Mortimer's PRs")
                                                                                    .datasource("github")
                                                                                    .build()))
                                                                            .build())
                                                                        .inviteInfo(InviteInfo.builder()
                                                                            .invites(List.of(
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build()))
                                                                            .build())
                                                                        .badges(List.of(
                                                                            Badge.builder()
                                                                                .key("deployment_name_new_hire")
                                                                                .displayName("New hire")
                                                                                .iconConfig(IconConfig.builder()
                                                                                    .color("#343CED")
                                                                                    .key("person_icon")
                                                                                    .iconType(IconType.GLYPH)
                                                                                    .name("user")
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build())
                                                                .remindAt(269943L)
                                                                .requestor(Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .metadata(PersonMetadata.builder()
                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                        .title("Actor")
                                                                        .department("Movies")
                                                                        .email("george@example.com")
                                                                        .location("Hollywood, CA")
                                                                        .phone("6505551234")
                                                                        .photoUrl("https://example.com/george.jpg")
                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                        .datasourceProfile(List.of(
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build()))
                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                            .suggestions(List.of(
                                                                                QuerySuggestion.builder()
                                                                                    .query("app:github type:pull author:mortimer")
                                                                                    .label("Mortimer's PRs")
                                                                                    .datasource("github")
                                                                                    .build()))
                                                                            .build())
                                                                        .inviteInfo(InviteInfo.builder()
                                                                            .invites(List.of(
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build()))
                                                                            .build())
                                                                        .badges(List.of(
                                                                            Badge.builder()
                                                                                .key("deployment_name_new_hire")
                                                                                .displayName("New hire")
                                                                                .iconConfig(IconConfig.builder()
                                                                                    .color("#343CED")
                                                                                    .key("person_icon")
                                                                                    .iconType(IconType.GLYPH)
                                                                                    .name("user")
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build())
                                                                .build())
                                                            .candidateVerifiers(List.of(
                                                                Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .build()))
                                                            .build())
                                                        .build())
                                                    .shortcuts(List.of(
                                                        Shortcut.builder()
                                                            .inputAlias("<value>")
                                                            .createdBy(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                        .suggestions(List.of(
                                                                            QuerySuggestion.builder()
                                                                                .query("app:github type:pull author:mortimer")
                                                                                .label("Mortimer's PRs")
                                                                                .datasource("github")
                                                                                .build()))
                                                                        .build())
                                                                    .inviteInfo(InviteInfo.builder()
                                                                        .invites(List.of(
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build()))
                                                                        .build())
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .updatedBy(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                        .suggestions(List.of(
                                                                            QuerySuggestion.builder()
                                                                                .query("app:github type:pull author:mortimer")
                                                                                .label("Mortimer's PRs")
                                                                                .datasource("github")
                                                                                .build()))
                                                                        .build())
                                                                    .inviteInfo(InviteInfo.builder()
                                                                        .invites(List.of(
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build()))
                                                                        .build())
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .build()))
                                                    .customData(Map.ofEntries(
                                                        Map.entry("someCustomField", CustomDataValue.builder()
                                                            .build())))
                                                    .contactPerson(Person.builder()
                                                        .name("George Clooney")
                                                        .obfuscatedId("abc123")
                                                        .metadata(PersonMetadata.builder()
                                                            .type(PersonMetadataType.FULL_TIME)
                                                            .title("Actor")
                                                            .department("Movies")
                                                            .email("george@example.com")
                                                            .location("Hollywood, CA")
                                                            .phone("6505551234")
                                                            .photoUrl("https://example.com/george.jpg")
                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                            .datasourceProfile(List.of(
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build(),
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build()))
                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                .suggestions(List.of(
                                                                    QuerySuggestion.builder()
                                                                        .query("app:github type:pull author:mortimer")
                                                                        .label("Mortimer's PRs")
                                                                        .datasource("github")
                                                                        .build()))
                                                                .build())
                                                            .inviteInfo(InviteInfo.builder()
                                                                .invites(List.of(
                                                                    ChannelInviteInfo.builder()
                                                                        .build(),
                                                                    ChannelInviteInfo.builder()
                                                                        .build(),
                                                                    ChannelInviteInfo.builder()
                                                                        .build()))
                                                                .build())
                                                            .badges(List.of(
                                                                Badge.builder()
                                                                    .key("deployment_name_new_hire")
                                                                    .displayName("New hire")
                                                                    .iconConfig(IconConfig.builder()
                                                                        .color("#343CED")
                                                                        .key("person_icon")
                                                                        .iconType(IconType.GLYPH)
                                                                        .name("user")
                                                                        .build())
                                                                    .build()))
                                                            .build())
                                                        .build())
                                                    .build())
                                                .build())
                                            .text("Because its wavelengths are shorter, blue light is more strongly scattered than the longer-wavelength lights, red or green. Hence the result that when looking at the sky away from the direct incident sunlight, the human eye perceives the sky to be blue.")
                                            .structuredResult(StructuredResult.builder()
                                                .document(Document.builder()
                                                    .metadata(DocumentMetadata.builder()
                                                        .datasource("datasource")
                                                        .objectType("Feature Request")
                                                        .container("container")
                                                        .parentId("JIRA_EN-1337")
                                                        .mimeType("mimeType")
                                                        .documentId("documentId")
                                                        .createTime(OffsetDateTime.parse("2000-01-23T04:56:07.000Z"))
                                                        .updateTime(OffsetDateTime.parse("2000-01-23T04:56:07.000Z"))
                                                        .author(Person.builder()
                                                            .name("George Clooney")
                                                            .obfuscatedId("abc123")
                                                            .relatedDocuments(List.of(
                                                                RelatedDocuments.builder()
                                                                    .querySuggestion(QuerySuggestion.builder()
                                                                        .query("app:github type:pull author:mortimer")
                                                                        .searchProviderInfo(SearchProviderInfo.builder()
                                                                            .name("Google")
                                                                            .searchLinkUrlTemplate("https://www.google.com/search?q={query}&hl=en")
                                                                            .build())
                                                                        .label("Mortimer's PRs")
                                                                        .datasource("github")
                                                                        .requestOptions(SearchRequestOptions.builder()
                                                                            .facetBucketSize(843281L)
                                                                            .datasourceFilter("JIRA")
                                                                            .datasourcesFilter(List.of(
                                                                                "JIRA"))
                                                                            .queryOverridesFacetFilters(true)
                                                                            .facetFilters(List.of(
                                                                                FacetFilter.builder()
                                                                                    .fieldName("type")
                                                                                    .values(List.of(
                                                                                        FacetFilterValue.builder()
                                                                                            .value("Spreadsheet")
                                                                                            .relationType(RelationType.EQUALS)
                                                                                            .build(),
                                                                                        FacetFilterValue.builder()
                                                                                            .value("Presentation")
                                                                                            .relationType(RelationType.EQUALS)
                                                                                            .build()))
                                                                                    .build()))
                                                                            .facetFilterSets(List.of(
                                                                                FacetFilterSet.builder()
                                                                                    .filters(List.of(
                                                                                        FacetFilter.builder()
                                                                                            .fieldName("type")
                                                                                            .values(List.of(
                                                                                                FacetFilterValue.builder()
                                                                                                    .value("Spreadsheet")
                                                                                                    .relationType(RelationType.EQUALS)
                                                                                                    .build(),
                                                                                                FacetFilterValue.builder()
                                                                                                    .value("Presentation")
                                                                                                    .relationType(RelationType.EQUALS)
                                                                                                    .build()))
                                                                                            .build()))
                                                                                    .build(),
                                                                                FacetFilterSet.builder()
                                                                                    .filters(List.of(
                                                                                        FacetFilter.builder()
                                                                                            .fieldName("type")
                                                                                            .values(List.of(
                                                                                                FacetFilterValue.builder()
                                                                                                    .value("Spreadsheet")
                                                                                                    .relationType(RelationType.EQUALS)
                                                                                                    .build(),
                                                                                                FacetFilterValue.builder()
                                                                                                    .value("Presentation")
                                                                                                    .relationType(RelationType.EQUALS)
                                                                                                    .build()))
                                                                                            .build()))
                                                                                    .build()))
                                                                            .authTokens(List.of(
                                                                                AuthToken.builder()
                                                                                    .accessToken("123abc")
                                                                                    .datasource("gmail")
                                                                                    .scope("email profile https://www.googleapis.com/auth/gmail.readonly")
                                                                                    .tokenType("Bearer")
                                                                                    .authUser("1")
                                                                                    .build()))
                                                                            .build())
                                                                        .ranges(List.of(
                                                                            TextRange.builder()
                                                                                .startIndex(925801L)
                                                                                .build(),
                                                                            TextRange.builder()
                                                                                .startIndex(925801L)
                                                                                .build(),
                                                                            TextRange.builder()
                                                                                .startIndex(925801L)
                                                                                .build()))
                                                                        .inputDetails(SearchRequestInputDetails.builder()
                                                                            .hasCopyPaste(true)
                                                                            .build())
                                                                        .build())
                                                                    .results(List.of(
                                                                        SearchResult.builder()
                                                                            .url("https://example.com/foo/bar")
                                                                            .title("title")
                                                                            .nativeAppUrl("slack://foo/bar")
                                                                            .snippets(List.of(
                                                                                SearchResultSnippet.builder()
                                                                                    .snippet("snippet")
                                                                                    .mimeType("mimeType")
                                                                                    .build()))
                                                                            .build()))
                                                                    .build(),
                                                                RelatedDocuments.builder()
                                                                    .querySuggestion(QuerySuggestion.builder()
                                                                        .query("app:github type:pull author:mortimer")
                                                                        .searchProviderInfo(SearchProviderInfo.builder()
                                                                            .name("Google")
                                                                            .searchLinkUrlTemplate("https://www.google.com/search?q={query}&hl=en")
                                                                            .build())
                                                                        .label("Mortimer's PRs")
                                                                        .datasource("github")
                                                                        .requestOptions(SearchRequestOptions.builder()
                                                                            .facetBucketSize(843281L)
                                                                            .datasourceFilter("JIRA")
                                                                            .datasourcesFilter(List.of(
                                                                                "JIRA"))
                                                                            .queryOverridesFacetFilters(true)
                                                                            .facetFilters(List.of(
                                                                                FacetFilter.builder()
                                                                                    .fieldName("type")
                                                                                    .values(List.of(
                                                                                        FacetFilterValue.builder()
                                                                                            .value("Spreadsheet")
                                                                                            .relationType(RelationType.EQUALS)
                                                                                            .build(),
                                                                                        FacetFilterValue.builder()
                                                                                            .value("Presentation")
                                                                                            .relationType(RelationType.EQUALS)
                                                                                            .build()))
                                                                                    .build()))
                                                                            .facetFilterSets(List.of(
                                                                                FacetFilterSet.builder()
                                                                                    .filters(List.of(
                                                                                        FacetFilter.builder()
                                                                                            .fieldName("type")
                                                                                            .values(List.of(
                                                                                                FacetFilterValue.builder()
                                                                                                    .value("Spreadsheet")
                                                                                                    .relationType(RelationType.EQUALS)
                                                                                                    .build(),
                                                                                                FacetFilterValue.builder()
                                                                                                    .value("Presentation")
                                                                                                    .relationType(RelationType.EQUALS)
                                                                                                    .build()))
                                                                                            .build()))
                                                                                    .build(),
                                                                                FacetFilterSet.builder()
                                                                                    .filters(List.of(
                                                                                        FacetFilter.builder()
                                                                                            .fieldName("type")
                                                                                            .values(List.of(
                                                                                                FacetFilterValue.builder()
                                                                                                    .value("Spreadsheet")
                                                                                                    .relationType(RelationType.EQUALS)
                                                                                                    .build(),
                                                                                                FacetFilterValue.builder()
                                                                                                    .value("Presentation")
                                                                                                    .relationType(RelationType.EQUALS)
                                                                                                    .build()))
                                                                                            .build()))
                                                                                    .build()))
                                                                            .authTokens(List.of(
                                                                                AuthToken.builder()
                                                                                    .accessToken("123abc")
                                                                                    .datasource("gmail")
                                                                                    .scope("email profile https://www.googleapis.com/auth/gmail.readonly")
                                                                                    .tokenType("Bearer")
                                                                                    .authUser("1")
                                                                                    .build()))
                                                                            .build())
                                                                        .ranges(List.of(
                                                                            TextRange.builder()
                                                                                .startIndex(925801L)
                                                                                .build(),
                                                                            TextRange.builder()
                                                                                .startIndex(925801L)
                                                                                .build(),
                                                                            TextRange.builder()
                                                                                .startIndex(925801L)
                                                                                .build()))
                                                                        .inputDetails(SearchRequestInputDetails.builder()
                                                                            .hasCopyPaste(true)
                                                                            .build())
                                                                        .build())
                                                                    .results(List.of(
                                                                        SearchResult.builder()
                                                                            .url("https://example.com/foo/bar")
                                                                            .title("title")
                                                                            .nativeAppUrl("slack://foo/bar")
                                                                            .snippets(List.of(
                                                                                SearchResultSnippet.builder()
                                                                                    .snippet("snippet")
                                                                                    .mimeType("mimeType")
                                                                                    .build()))
                                                                            .build()))
                                                                    .build(),
                                                                RelatedDocuments.builder()
                                                                    .querySuggestion(QuerySuggestion.builder()
                                                                        .query("app:github type:pull author:mortimer")
                                                                        .searchProviderInfo(SearchProviderInfo.builder()
                                                                            .name("Google")
                                                                            .searchLinkUrlTemplate("https://www.google.com/search?q={query}&hl=en")
                                                                            .build())
                                                                        .label("Mortimer's PRs")
                                                                        .datasource("github")
                                                                        .requestOptions(SearchRequestOptions.builder()
                                                                            .facetBucketSize(843281L)
                                                                            .datasourceFilter("JIRA")
                                                                            .datasourcesFilter(List.of(
                                                                                "JIRA"))
                                                                            .queryOverridesFacetFilters(true)
                                                                            .facetFilters(List.of(
                                                                                FacetFilter.builder()
                                                                                    .fieldName("type")
                                                                                    .values(List.of(
                                                                                        FacetFilterValue.builder()
                                                                                            .value("Spreadsheet")
                                                                                            .relationType(RelationType.EQUALS)
                                                                                            .build(),
                                                                                        FacetFilterValue.builder()
                                                                                            .value("Presentation")
                                                                                            .relationType(RelationType.EQUALS)
                                                                                            .build()))
                                                                                    .build()))
                                                                            .facetFilterSets(List.of(
                                                                                FacetFilterSet.builder()
                                                                                    .filters(List.of(
                                                                                        FacetFilter.builder()
                                                                                            .fieldName("type")
                                                                                            .values(List.of(
                                                                                                FacetFilterValue.builder()
                                                                                                    .value("Spreadsheet")
                                                                                                    .relationType(RelationType.EQUALS)
                                                                                                    .build(),
                                                                                                FacetFilterValue.builder()
                                                                                                    .value("Presentation")
                                                                                                    .relationType(RelationType.EQUALS)
                                                                                                    .build()))
                                                                                            .build()))
                                                                                    .build(),
                                                                                FacetFilterSet.builder()
                                                                                    .filters(List.of(
                                                                                        FacetFilter.builder()
                                                                                            .fieldName("type")
                                                                                            .values(List.of(
                                                                                                FacetFilterValue.builder()
                                                                                                    .value("Spreadsheet")
                                                                                                    .relationType(RelationType.EQUALS)
                                                                                                    .build(),
                                                                                                FacetFilterValue.builder()
                                                                                                    .value("Presentation")
                                                                                                    .relationType(RelationType.EQUALS)
                                                                                                    .build()))
                                                                                            .build()))
                                                                                    .build()))
                                                                            .authTokens(List.of(
                                                                                AuthToken.builder()
                                                                                    .accessToken("123abc")
                                                                                    .datasource("gmail")
                                                                                    .scope("email profile https://www.googleapis.com/auth/gmail.readonly")
                                                                                    .tokenType("Bearer")
                                                                                    .authUser("1")
                                                                                    .build()))
                                                                            .build())
                                                                        .ranges(List.of(
                                                                            TextRange.builder()
                                                                                .startIndex(925801L)
                                                                                .build(),
                                                                            TextRange.builder()
                                                                                .startIndex(925801L)
                                                                                .build(),
                                                                            TextRange.builder()
                                                                                .startIndex(925801L)
                                                                                .build()))
                                                                        .inputDetails(SearchRequestInputDetails.builder()
                                                                            .hasCopyPaste(true)
                                                                            .build())
                                                                        .build())
                                                                    .results(List.of(
                                                                        SearchResult.builder()
                                                                            .url("https://example.com/foo/bar")
                                                                            .title("title")
                                                                            .nativeAppUrl("slack://foo/bar")
                                                                            .snippets(List.of(
                                                                                SearchResultSnippet.builder()
                                                                                    .snippet("snippet")
                                                                                    .mimeType("mimeType")
                                                                                    .build()))
                                                                            .build()))
                                                                    .build()))
                                                            .metadata(PersonMetadata.builder()
                                                                .type(PersonMetadataType.FULL_TIME)
                                                                .title("Actor")
                                                                .department("Movies")
                                                                .email("george@example.com")
                                                                .location("Hollywood, CA")
                                                                .phone("6505551234")
                                                                .photoUrl("https://example.com/george.jpg")
                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                .datasourceProfile(List.of(
                                                                    DatasourceProfile.builder()
                                                                        .datasource("github")
                                                                        .handle("<value>")
                                                                        .build(),
                                                                    DatasourceProfile.builder()
                                                                        .datasource("github")
                                                                        .handle("<value>")
                                                                        .build(),
                                                                    DatasourceProfile.builder()
                                                                        .datasource("github")
                                                                        .handle("<value>")
                                                                        .build()))
                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                    .suggestions(List.of(
                                                                        QuerySuggestion.builder()
                                                                            .query("app:github type:pull author:mortimer")
                                                                            .label("Mortimer's PRs")
                                                                            .datasource("github")
                                                                            .build()))
                                                                    .build())
                                                                .inviteInfo(InviteInfo.builder()
                                                                    .invites(List.of(
                                                                        ChannelInviteInfo.builder()
                                                                            .build(),
                                                                        ChannelInviteInfo.builder()
                                                                            .build(),
                                                                        ChannelInviteInfo.builder()
                                                                            .build()))
                                                                    .build())
                                                                .customFields(List.of(
                                                                    CustomFieldData.builder()
                                                                        .label("<value>")
                                                                        .values(List.of(
                                                                            CustomFieldValue.of(CustomFieldValueStr.builder()
                                                                                .build()),
                                                                            CustomFieldValue.of(CustomFieldValueStr.builder()
                                                                                .build())))
                                                                        .build(),
                                                                    CustomFieldData.builder()
                                                                        .label("<value>")
                                                                        .values(List.of(
                                                                            CustomFieldValue.of(CustomFieldValueStr.builder()
                                                                                .build()),
                                                                            CustomFieldValue.of(CustomFieldValueStr.builder()
                                                                                .build())))
                                                                        .build(),
                                                                    CustomFieldData.builder()
                                                                        .label("<value>")
                                                                        .values(List.of(
                                                                            CustomFieldValue.of(CustomFieldValueStr.builder()
                                                                                .build()),
                                                                            CustomFieldValue.of(CustomFieldValueStr.builder()
                                                                                .build())))
                                                                        .build()))
                                                                .badges(List.of(
                                                                    Badge.builder()
                                                                        .key("deployment_name_new_hire")
                                                                        .displayName("New hire")
                                                                        .iconConfig(IconConfig.builder()
                                                                            .color("#343CED")
                                                                            .key("person_icon")
                                                                            .iconType(IconType.GLYPH)
                                                                            .name("user")
                                                                            .build())
                                                                        .build()))
                                                                .build())
                                                            .build())
                                                        .owner(Person.builder()
                                                            .name("George Clooney")
                                                            .obfuscatedId("abc123")
                                                            .metadata(PersonMetadata.builder()
                                                                .type(PersonMetadataType.FULL_TIME)
                                                                .title("Actor")
                                                                .department("Movies")
                                                                .email("george@example.com")
                                                                .location("Hollywood, CA")
                                                                .phone("6505551234")
                                                                .photoUrl("https://example.com/george.jpg")
                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                .datasourceProfile(List.of(
                                                                    DatasourceProfile.builder()
                                                                        .datasource("github")
                                                                        .handle("<value>")
                                                                        .build(),
                                                                    DatasourceProfile.builder()
                                                                        .datasource("github")
                                                                        .handle("<value>")
                                                                        .build(),
                                                                    DatasourceProfile.builder()
                                                                        .datasource("github")
                                                                        .handle("<value>")
                                                                        .build()))
                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                    .suggestions(List.of(
                                                                        QuerySuggestion.builder()
                                                                            .query("app:github type:pull author:mortimer")
                                                                            .label("Mortimer's PRs")
                                                                            .datasource("github")
                                                                            .build()))
                                                                    .build())
                                                                .inviteInfo(InviteInfo.builder()
                                                                    .invites(List.of(
                                                                        ChannelInviteInfo.builder()
                                                                            .build(),
                                                                        ChannelInviteInfo.builder()
                                                                            .build(),
                                                                        ChannelInviteInfo.builder()
                                                                            .build()))
                                                                    .build())
                                                                .badges(List.of(
                                                                    Badge.builder()
                                                                        .key("deployment_name_new_hire")
                                                                        .displayName("New hire")
                                                                        .iconConfig(IconConfig.builder()
                                                                            .color("#343CED")
                                                                            .key("person_icon")
                                                                            .iconType(IconType.GLYPH)
                                                                            .name("user")
                                                                            .build())
                                                                        .build()))
                                                                .build())
                                                            .build())
                                                        .mentionedPeople(List.of(
                                                            Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .build()))
                                                        .components(List.of(
                                                            "Backend",
                                                            "Networking"))
                                                        .status("[\"Done\"]")
                                                        .pins(List.of(
                                                            PinDocument.builder()
                                                                .documentId("<id>")
                                                                .audienceFilters(List.of(
                                                                    FacetFilter.builder()
                                                                        .fieldName("type")
                                                                        .values(List.of(
                                                                            FacetFilterValue.builder()
                                                                                .value("Spreadsheet")
                                                                                .relationType(RelationType.EQUALS)
                                                                                .build(),
                                                                            FacetFilterValue.builder()
                                                                                .value("Presentation")
                                                                                .relationType(RelationType.EQUALS)
                                                                                .build()))
                                                                        .build()))
                                                                .attribution(Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .metadata(PersonMetadata.builder()
                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                        .title("Actor")
                                                                        .department("Movies")
                                                                        .email("george@example.com")
                                                                        .location("Hollywood, CA")
                                                                        .phone("6505551234")
                                                                        .photoUrl("https://example.com/george.jpg")
                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                        .datasourceProfile(List.of(
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build()))
                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                            .suggestions(List.of(
                                                                                QuerySuggestion.builder()
                                                                                    .query("app:github type:pull author:mortimer")
                                                                                    .label("Mortimer's PRs")
                                                                                    .datasource("github")
                                                                                    .build()))
                                                                            .build())
                                                                        .inviteInfo(InviteInfo.builder()
                                                                            .invites(List.of(
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build()))
                                                                            .build())
                                                                        .badges(List.of(
                                                                            Badge.builder()
                                                                                .key("deployment_name_new_hire")
                                                                                .displayName("New hire")
                                                                                .iconConfig(IconConfig.builder()
                                                                                    .color("#343CED")
                                                                                    .key("person_icon")
                                                                                    .iconType(IconType.GLYPH)
                                                                                    .name("user")
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build())
                                                                .updatedBy(Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .metadata(PersonMetadata.builder()
                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                        .title("Actor")
                                                                        .department("Movies")
                                                                        .email("george@example.com")
                                                                        .location("Hollywood, CA")
                                                                        .phone("6505551234")
                                                                        .photoUrl("https://example.com/george.jpg")
                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                        .datasourceProfile(List.of(
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build()))
                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                            .suggestions(List.of(
                                                                                QuerySuggestion.builder()
                                                                                    .query("app:github type:pull author:mortimer")
                                                                                    .label("Mortimer's PRs")
                                                                                    .datasource("github")
                                                                                    .build()))
                                                                            .build())
                                                                        .inviteInfo(InviteInfo.builder()
                                                                            .invites(List.of(
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build()))
                                                                            .build())
                                                                        .badges(List.of(
                                                                            Badge.builder()
                                                                                .key("deployment_name_new_hire")
                                                                                .displayName("New hire")
                                                                                .iconConfig(IconConfig.builder()
                                                                                    .color("#343CED")
                                                                                    .key("person_icon")
                                                                                    .iconType(IconType.GLYPH)
                                                                                    .name("user")
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build())
                                                                .build(),
                                                            PinDocument.builder()
                                                                .documentId("<id>")
                                                                .audienceFilters(List.of(
                                                                    FacetFilter.builder()
                                                                        .fieldName("type")
                                                                        .values(List.of(
                                                                            FacetFilterValue.builder()
                                                                                .value("Spreadsheet")
                                                                                .relationType(RelationType.EQUALS)
                                                                                .build(),
                                                                            FacetFilterValue.builder()
                                                                                .value("Presentation")
                                                                                .relationType(RelationType.EQUALS)
                                                                                .build()))
                                                                        .build()))
                                                                .attribution(Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .metadata(PersonMetadata.builder()
                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                        .title("Actor")
                                                                        .department("Movies")
                                                                        .email("george@example.com")
                                                                        .location("Hollywood, CA")
                                                                        .phone("6505551234")
                                                                        .photoUrl("https://example.com/george.jpg")
                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                        .datasourceProfile(List.of(
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build()))
                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                            .suggestions(List.of(
                                                                                QuerySuggestion.builder()
                                                                                    .query("app:github type:pull author:mortimer")
                                                                                    .label("Mortimer's PRs")
                                                                                    .datasource("github")
                                                                                    .build()))
                                                                            .build())
                                                                        .inviteInfo(InviteInfo.builder()
                                                                            .invites(List.of(
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build()))
                                                                            .build())
                                                                        .badges(List.of(
                                                                            Badge.builder()
                                                                                .key("deployment_name_new_hire")
                                                                                .displayName("New hire")
                                                                                .iconConfig(IconConfig.builder()
                                                                                    .color("#343CED")
                                                                                    .key("person_icon")
                                                                                    .iconType(IconType.GLYPH)
                                                                                    .name("user")
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build())
                                                                .updatedBy(Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .metadata(PersonMetadata.builder()
                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                        .title("Actor")
                                                                        .department("Movies")
                                                                        .email("george@example.com")
                                                                        .location("Hollywood, CA")
                                                                        .phone("6505551234")
                                                                        .photoUrl("https://example.com/george.jpg")
                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                        .datasourceProfile(List.of(
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build()))
                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                            .suggestions(List.of(
                                                                                QuerySuggestion.builder()
                                                                                    .query("app:github type:pull author:mortimer")
                                                                                    .label("Mortimer's PRs")
                                                                                    .datasource("github")
                                                                                    .build()))
                                                                            .build())
                                                                        .inviteInfo(InviteInfo.builder()
                                                                            .invites(List.of(
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build()))
                                                                            .build())
                                                                        .badges(List.of(
                                                                            Badge.builder()
                                                                                .key("deployment_name_new_hire")
                                                                                .displayName("New hire")
                                                                                .iconConfig(IconConfig.builder()
                                                                                    .color("#343CED")
                                                                                    .key("person_icon")
                                                                                    .iconType(IconType.GLYPH)
                                                                                    .name("user")
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build())
                                                                .build()))
                                                        .assignedTo(Person.builder()
                                                            .name("George Clooney")
                                                            .obfuscatedId("abc123")
                                                            .metadata(PersonMetadata.builder()
                                                                .type(PersonMetadataType.FULL_TIME)
                                                                .title("Actor")
                                                                .department("Movies")
                                                                .email("george@example.com")
                                                                .location("Hollywood, CA")
                                                                .phone("6505551234")
                                                                .photoUrl("https://example.com/george.jpg")
                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                .datasourceProfile(List.of(
                                                                    DatasourceProfile.builder()
                                                                        .datasource("github")
                                                                        .handle("<value>")
                                                                        .build(),
                                                                    DatasourceProfile.builder()
                                                                        .datasource("github")
                                                                        .handle("<value>")
                                                                        .build(),
                                                                    DatasourceProfile.builder()
                                                                        .datasource("github")
                                                                        .handle("<value>")
                                                                        .build()))
                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                    .suggestions(List.of(
                                                                        QuerySuggestion.builder()
                                                                            .query("app:github type:pull author:mortimer")
                                                                            .label("Mortimer's PRs")
                                                                            .datasource("github")
                                                                            .build()))
                                                                    .build())
                                                                .inviteInfo(InviteInfo.builder()
                                                                    .invites(List.of(
                                                                        ChannelInviteInfo.builder()
                                                                            .build(),
                                                                        ChannelInviteInfo.builder()
                                                                            .build(),
                                                                        ChannelInviteInfo.builder()
                                                                            .build()))
                                                                    .build())
                                                                .badges(List.of(
                                                                    Badge.builder()
                                                                        .key("deployment_name_new_hire")
                                                                        .displayName("New hire")
                                                                        .iconConfig(IconConfig.builder()
                                                                            .color("#343CED")
                                                                            .key("person_icon")
                                                                            .iconType(IconType.GLYPH)
                                                                            .name("user")
                                                                            .build())
                                                                        .build()))
                                                                .build())
                                                            .build())
                                                        .updatedBy(Person.builder()
                                                            .name("George Clooney")
                                                            .obfuscatedId("abc123")
                                                            .metadata(PersonMetadata.builder()
                                                                .type(PersonMetadataType.FULL_TIME)
                                                                .title("Actor")
                                                                .department("Movies")
                                                                .email("george@example.com")
                                                                .location("Hollywood, CA")
                                                                .phone("6505551234")
                                                                .photoUrl("https://example.com/george.jpg")
                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                .datasourceProfile(List.of(
                                                                    DatasourceProfile.builder()
                                                                        .datasource("github")
                                                                        .handle("<value>")
                                                                        .build(),
                                                                    DatasourceProfile.builder()
                                                                        .datasource("github")
                                                                        .handle("<value>")
                                                                        .build(),
                                                                    DatasourceProfile.builder()
                                                                        .datasource("github")
                                                                        .handle("<value>")
                                                                        .build()))
                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                    .suggestions(List.of(
                                                                        QuerySuggestion.builder()
                                                                            .query("app:github type:pull author:mortimer")
                                                                            .label("Mortimer's PRs")
                                                                            .datasource("github")
                                                                            .build()))
                                                                    .build())
                                                                .inviteInfo(InviteInfo.builder()
                                                                    .invites(List.of(
                                                                        ChannelInviteInfo.builder()
                                                                            .build(),
                                                                        ChannelInviteInfo.builder()
                                                                            .build(),
                                                                        ChannelInviteInfo.builder()
                                                                            .build()))
                                                                    .build())
                                                                .badges(List.of(
                                                                    Badge.builder()
                                                                        .key("deployment_name_new_hire")
                                                                        .displayName("New hire")
                                                                        .iconConfig(IconConfig.builder()
                                                                            .color("#343CED")
                                                                            .key("person_icon")
                                                                            .iconType(IconType.GLYPH)
                                                                            .name("user")
                                                                            .build())
                                                                        .build()))
                                                                .build())
                                                            .build())
                                                        .collections(List.of(
                                                            Collection.builder()
                                                                .name("<value>")
                                                                .description("perfectly flustered dimly")
                                                                .id(83242L)
                                                                .addedRoles(List.of(
                                                                    UserRoleSpecification.builder()
                                                                        .role(UserRole.ANSWER_MODERATOR)
                                                                        .person(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .build(),
                                                                    UserRoleSpecification.builder()
                                                                        .role(UserRole.ANSWER_MODERATOR)
                                                                        .person(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .build(),
                                                                    UserRoleSpecification.builder()
                                                                        .role(UserRole.ANSWER_MODERATOR)
                                                                        .person(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .build()))
                                                                .removedRoles(List.of(
                                                                    UserRoleSpecification.builder()
                                                                        .role(UserRole.VERIFIER)
                                                                        .person(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .build()))
                                                                .audienceFilters(List.of(
                                                                    FacetFilter.builder()
                                                                        .fieldName("type")
                                                                        .values(List.of(
                                                                            FacetFilterValue.builder()
                                                                                .value("Spreadsheet")
                                                                                .relationType(RelationType.EQUALS)
                                                                                .build(),
                                                                            FacetFilterValue.builder()
                                                                                .value("Presentation")
                                                                                .relationType(RelationType.EQUALS)
                                                                                .build()))
                                                                        .build()))
                                                                .creator(Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .metadata(PersonMetadata.builder()
                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                        .title("Actor")
                                                                        .department("Movies")
                                                                        .email("george@example.com")
                                                                        .location("Hollywood, CA")
                                                                        .phone("6505551234")
                                                                        .photoUrl("https://example.com/george.jpg")
                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                        .datasourceProfile(List.of(
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build()))
                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                            .suggestions(List.of(
                                                                                QuerySuggestion.builder()
                                                                                    .query("app:github type:pull author:mortimer")
                                                                                    .label("Mortimer's PRs")
                                                                                    .datasource("github")
                                                                                    .build()))
                                                                            .build())
                                                                        .inviteInfo(InviteInfo.builder()
                                                                            .invites(List.of(
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build()))
                                                                            .build())
                                                                        .badges(List.of(
                                                                            Badge.builder()
                                                                                .key("deployment_name_new_hire")
                                                                                .displayName("New hire")
                                                                                .iconConfig(IconConfig.builder()
                                                                                    .color("#343CED")
                                                                                    .key("person_icon")
                                                                                    .iconType(IconType.GLYPH)
                                                                                    .name("user")
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build())
                                                                .updatedBy(Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .metadata(PersonMetadata.builder()
                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                        .title("Actor")
                                                                        .department("Movies")
                                                                        .email("george@example.com")
                                                                        .location("Hollywood, CA")
                                                                        .phone("6505551234")
                                                                        .photoUrl("https://example.com/george.jpg")
                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                        .datasourceProfile(List.of(
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build()))
                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                            .suggestions(List.of(
                                                                                QuerySuggestion.builder()
                                                                                    .query("app:github type:pull author:mortimer")
                                                                                    .label("Mortimer's PRs")
                                                                                    .datasource("github")
                                                                                    .build()))
                                                                            .build())
                                                                        .inviteInfo(InviteInfo.builder()
                                                                            .invites(List.of(
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build()))
                                                                            .build())
                                                                        .badges(List.of(
                                                                            Badge.builder()
                                                                                .key("deployment_name_new_hire")
                                                                                .displayName("New hire")
                                                                                .iconConfig(IconConfig.builder()
                                                                                    .color("#343CED")
                                                                                    .key("person_icon")
                                                                                    .iconType(IconType.GLYPH)
                                                                                    .name("user")
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build())
                                                                .items(List.of(
                                                                    CollectionItem.builder()
                                                                        .collectionId(420359L)
                                                                        .itemType(CollectionItemItemType.COLLECTION)
                                                                        .createdBy(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .shortcut(Shortcut.builder()
                                                                            .inputAlias("<value>")
                                                                            .createdBy(Person.builder()
                                                                                .name("George Clooney")
                                                                                .obfuscatedId("abc123")
                                                                                .metadata(PersonMetadata.builder()
                                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                                    .title("Actor")
                                                                                    .department("Movies")
                                                                                    .email("george@example.com")
                                                                                    .location("Hollywood, CA")
                                                                                    .phone("6505551234")
                                                                                    .photoUrl("https://example.com/george.jpg")
                                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                                    .datasourceProfile(List.of(
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build(),
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build(),
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build()))
                                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                                        .suggestions(List.of(
                                                                                            QuerySuggestion.builder()
                                                                                                .query("app:github type:pull author:mortimer")
                                                                                                .label("Mortimer's PRs")
                                                                                                .datasource("github")
                                                                                                .build()))
                                                                                        .build())
                                                                                    .inviteInfo(InviteInfo.builder()
                                                                                        .invites(List.of(
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build()))
                                                                                        .build())
                                                                                    .badges(List.of(
                                                                                        Badge.builder()
                                                                                            .key("deployment_name_new_hire")
                                                                                            .displayName("New hire")
                                                                                            .iconConfig(IconConfig.builder()
                                                                                                .color("#343CED")
                                                                                                .key("person_icon")
                                                                                                .iconType(IconType.GLYPH)
                                                                                                .name("user")
                                                                                                .build())
                                                                                            .build()))
                                                                                    .build())
                                                                                .build())
                                                                            .updatedBy(Person.builder()
                                                                                .name("George Clooney")
                                                                                .obfuscatedId("abc123")
                                                                                .metadata(PersonMetadata.builder()
                                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                                    .title("Actor")
                                                                                    .department("Movies")
                                                                                    .email("george@example.com")
                                                                                    .location("Hollywood, CA")
                                                                                    .phone("6505551234")
                                                                                    .photoUrl("https://example.com/george.jpg")
                                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                                    .datasourceProfile(List.of(
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build(),
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build()))
                                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                                        .suggestions(List.of(
                                                                                            QuerySuggestion.builder()
                                                                                                .query("app:github type:pull author:mortimer")
                                                                                                .label("Mortimer's PRs")
                                                                                                .datasource("github")
                                                                                                .build()))
                                                                                        .build())
                                                                                    .inviteInfo(InviteInfo.builder()
                                                                                        .invites(List.of(
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build()))
                                                                                        .build())
                                                                                    .badges(List.of(
                                                                                        Badge.builder()
                                                                                            .key("deployment_name_new_hire")
                                                                                            .displayName("New hire")
                                                                                            .iconConfig(IconConfig.builder()
                                                                                                .color("#343CED")
                                                                                                .key("person_icon")
                                                                                                .iconType(IconType.GLYPH)
                                                                                                .name("user")
                                                                                                .build())
                                                                                            .build()))
                                                                                    .build())
                                                                                .build())
                                                                            .roles(List.of(
                                                                                UserRoleSpecification.builder()
                                                                                    .role(UserRole.ANSWER_MODERATOR)
                                                                                    .person(Person.builder()
                                                                                        .name("George Clooney")
                                                                                        .obfuscatedId("abc123")
                                                                                        .metadata(PersonMetadata.builder()
                                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                                            .title("Actor")
                                                                                            .department("Movies")
                                                                                            .email("george@example.com")
                                                                                            .location("Hollywood, CA")
                                                                                            .phone("6505551234")
                                                                                            .photoUrl("https://example.com/george.jpg")
                                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                                            .datasourceProfile(List.of(
                                                                                                DatasourceProfile.builder()
                                                                                                    .datasource("github")
                                                                                                    .handle("<value>")
                                                                                                    .build(),
                                                                                                DatasourceProfile.builder()
                                                                                                    .datasource("github")
                                                                                                    .handle("<value>")
                                                                                                    .build()))
                                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                                .suggestions(List.of(
                                                                                                    QuerySuggestion.builder()
                                                                                                        .query("app:github type:pull author:mortimer")
                                                                                                        .label("Mortimer's PRs")
                                                                                                        .datasource("github")
                                                                                                        .build()))
                                                                                                .build())
                                                                                            .inviteInfo(InviteInfo.builder()
                                                                                                .invites(List.of(
                                                                                                    ChannelInviteInfo.builder()
                                                                                                        .build(),
                                                                                                    ChannelInviteInfo.builder()
                                                                                                        .build(),
                                                                                                    ChannelInviteInfo.builder()
                                                                                                        .build()))
                                                                                                .build())
                                                                                            .badges(List.of(
                                                                                                Badge.builder()
                                                                                                    .key("deployment_name_new_hire")
                                                                                                    .displayName("New hire")
                                                                                                    .iconConfig(IconConfig.builder()
                                                                                                        .color("#343CED")
                                                                                                        .key("person_icon")
                                                                                                        .iconType(IconType.GLYPH)
                                                                                                        .name("user")
                                                                                                        .build())
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .build())
                                                                                    .build(),
                                                                                UserRoleSpecification.builder()
                                                                                    .role(UserRole.ANSWER_MODERATOR)
                                                                                    .person(Person.builder()
                                                                                        .name("George Clooney")
                                                                                        .obfuscatedId("abc123")
                                                                                        .metadata(PersonMetadata.builder()
                                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                                            .title("Actor")
                                                                                            .department("Movies")
                                                                                            .email("george@example.com")
                                                                                            .location("Hollywood, CA")
                                                                                            .phone("6505551234")
                                                                                            .photoUrl("https://example.com/george.jpg")
                                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                                            .datasourceProfile(List.of(
                                                                                                DatasourceProfile.builder()
                                                                                                    .datasource("github")
                                                                                                    .handle("<value>")
                                                                                                    .build(),
                                                                                                DatasourceProfile.builder()
                                                                                                    .datasource("github")
                                                                                                    .handle("<value>")
                                                                                                    .build()))
                                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                                .suggestions(List.of(
                                                                                                    QuerySuggestion.builder()
                                                                                                        .query("app:github type:pull author:mortimer")
                                                                                                        .label("Mortimer's PRs")
                                                                                                        .datasource("github")
                                                                                                        .build()))
                                                                                                .build())
                                                                                            .inviteInfo(InviteInfo.builder()
                                                                                                .invites(List.of(
                                                                                                    ChannelInviteInfo.builder()
                                                                                                        .build(),
                                                                                                    ChannelInviteInfo.builder()
                                                                                                        .build(),
                                                                                                    ChannelInviteInfo.builder()
                                                                                                        .build()))
                                                                                                .build())
                                                                                            .badges(List.of(
                                                                                                Badge.builder()
                                                                                                    .key("deployment_name_new_hire")
                                                                                                    .displayName("New hire")
                                                                                                    .iconConfig(IconConfig.builder()
                                                                                                        .color("#343CED")
                                                                                                        .key("person_icon")
                                                                                                        .iconType(IconType.GLYPH)
                                                                                                        .name("user")
                                                                                                        .build())
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build(),
                                                                    CollectionItem.builder()
                                                                        .collectionId(420359L)
                                                                        .itemType(CollectionItemItemType.COLLECTION)
                                                                        .createdBy(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .shortcut(Shortcut.builder()
                                                                            .inputAlias("<value>")
                                                                            .createdBy(Person.builder()
                                                                                .name("George Clooney")
                                                                                .obfuscatedId("abc123")
                                                                                .metadata(PersonMetadata.builder()
                                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                                    .title("Actor")
                                                                                    .department("Movies")
                                                                                    .email("george@example.com")
                                                                                    .location("Hollywood, CA")
                                                                                    .phone("6505551234")
                                                                                    .photoUrl("https://example.com/george.jpg")
                                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                                    .datasourceProfile(List.of(
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build(),
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build(),
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build()))
                                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                                        .suggestions(List.of(
                                                                                            QuerySuggestion.builder()
                                                                                                .query("app:github type:pull author:mortimer")
                                                                                                .label("Mortimer's PRs")
                                                                                                .datasource("github")
                                                                                                .build()))
                                                                                        .build())
                                                                                    .inviteInfo(InviteInfo.builder()
                                                                                        .invites(List.of(
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build()))
                                                                                        .build())
                                                                                    .badges(List.of(
                                                                                        Badge.builder()
                                                                                            .key("deployment_name_new_hire")
                                                                                            .displayName("New hire")
                                                                                            .iconConfig(IconConfig.builder()
                                                                                                .color("#343CED")
                                                                                                .key("person_icon")
                                                                                                .iconType(IconType.GLYPH)
                                                                                                .name("user")
                                                                                                .build())
                                                                                            .build()))
                                                                                    .build())
                                                                                .build())
                                                                            .updatedBy(Person.builder()
                                                                                .name("George Clooney")
                                                                                .obfuscatedId("abc123")
                                                                                .metadata(PersonMetadata.builder()
                                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                                    .title("Actor")
                                                                                    .department("Movies")
                                                                                    .email("george@example.com")
                                                                                    .location("Hollywood, CA")
                                                                                    .phone("6505551234")
                                                                                    .photoUrl("https://example.com/george.jpg")
                                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                                    .datasourceProfile(List.of(
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build(),
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build()))
                                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                                        .suggestions(List.of(
                                                                                            QuerySuggestion.builder()
                                                                                                .query("app:github type:pull author:mortimer")
                                                                                                .label("Mortimer's PRs")
                                                                                                .datasource("github")
                                                                                                .build()))
                                                                                        .build())
                                                                                    .inviteInfo(InviteInfo.builder()
                                                                                        .invites(List.of(
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build()))
                                                                                        .build())
                                                                                    .badges(List.of(
                                                                                        Badge.builder()
                                                                                            .key("deployment_name_new_hire")
                                                                                            .displayName("New hire")
                                                                                            .iconConfig(IconConfig.builder()
                                                                                                .color("#343CED")
                                                                                                .key("person_icon")
                                                                                                .iconType(IconType.GLYPH)
                                                                                                .name("user")
                                                                                                .build())
                                                                                            .build()))
                                                                                    .build())
                                                                                .build())
                                                                            .roles(List.of(
                                                                                UserRoleSpecification.builder()
                                                                                    .role(UserRole.ANSWER_MODERATOR)
                                                                                    .person(Person.builder()
                                                                                        .name("George Clooney")
                                                                                        .obfuscatedId("abc123")
                                                                                        .metadata(PersonMetadata.builder()
                                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                                            .title("Actor")
                                                                                            .department("Movies")
                                                                                            .email("george@example.com")
                                                                                            .location("Hollywood, CA")
                                                                                            .phone("6505551234")
                                                                                            .photoUrl("https://example.com/george.jpg")
                                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                                            .datasourceProfile(List.of(
                                                                                                DatasourceProfile.builder()
                                                                                                    .datasource("github")
                                                                                                    .handle("<value>")
                                                                                                    .build(),
                                                                                                DatasourceProfile.builder()
                                                                                                    .datasource("github")
                                                                                                    .handle("<value>")
                                                                                                    .build()))
                                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                                .suggestions(List.of(
                                                                                                    QuerySuggestion.builder()
                                                                                                        .query("app:github type:pull author:mortimer")
                                                                                                        .label("Mortimer's PRs")
                                                                                                        .datasource("github")
                                                                                                        .build()))
                                                                                                .build())
                                                                                            .inviteInfo(InviteInfo.builder()
                                                                                                .invites(List.of(
                                                                                                    ChannelInviteInfo.builder()
                                                                                                        .build(),
                                                                                                    ChannelInviteInfo.builder()
                                                                                                        .build(),
                                                                                                    ChannelInviteInfo.builder()
                                                                                                        .build()))
                                                                                                .build())
                                                                                            .badges(List.of(
                                                                                                Badge.builder()
                                                                                                    .key("deployment_name_new_hire")
                                                                                                    .displayName("New hire")
                                                                                                    .iconConfig(IconConfig.builder()
                                                                                                        .color("#343CED")
                                                                                                        .key("person_icon")
                                                                                                        .iconType(IconType.GLYPH)
                                                                                                        .name("user")
                                                                                                        .build())
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .build())
                                                                                    .build(),
                                                                                UserRoleSpecification.builder()
                                                                                    .role(UserRole.ANSWER_MODERATOR)
                                                                                    .person(Person.builder()
                                                                                        .name("George Clooney")
                                                                                        .obfuscatedId("abc123")
                                                                                        .metadata(PersonMetadata.builder()
                                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                                            .title("Actor")
                                                                                            .department("Movies")
                                                                                            .email("george@example.com")
                                                                                            .location("Hollywood, CA")
                                                                                            .phone("6505551234")
                                                                                            .photoUrl("https://example.com/george.jpg")
                                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                                            .datasourceProfile(List.of(
                                                                                                DatasourceProfile.builder()
                                                                                                    .datasource("github")
                                                                                                    .handle("<value>")
                                                                                                    .build(),
                                                                                                DatasourceProfile.builder()
                                                                                                    .datasource("github")
                                                                                                    .handle("<value>")
                                                                                                    .build()))
                                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                                .suggestions(List.of(
                                                                                                    QuerySuggestion.builder()
                                                                                                        .query("app:github type:pull author:mortimer")
                                                                                                        .label("Mortimer's PRs")
                                                                                                        .datasource("github")
                                                                                                        .build()))
                                                                                                .build())
                                                                                            .inviteInfo(InviteInfo.builder()
                                                                                                .invites(List.of(
                                                                                                    ChannelInviteInfo.builder()
                                                                                                        .build(),
                                                                                                    ChannelInviteInfo.builder()
                                                                                                        .build(),
                                                                                                    ChannelInviteInfo.builder()
                                                                                                        .build()))
                                                                                                .build())
                                                                                            .badges(List.of(
                                                                                                Badge.builder()
                                                                                                    .key("deployment_name_new_hire")
                                                                                                    .displayName("New hire")
                                                                                                    .iconConfig(IconConfig.builder()
                                                                                                        .color("#343CED")
                                                                                                        .key("person_icon")
                                                                                                        .iconType(IconType.GLYPH)
                                                                                                        .name("user")
                                                                                                        .build())
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build()))
                                                                .build()))
                                                        .interactions(DocumentInteractions.builder()
                                                            .reacts(List.of(
                                                                Reaction.builder()
                                                                    .reactors(List.of(
                                                                        Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .build()))
                                                                    .build(),
                                                                Reaction.builder()
                                                                    .reactors(List.of(
                                                                        Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .build()))
                                                                    .build()))
                                                            .shares(List.of(
                                                                Share.builder()
                                                                    .numDaysAgo(582012L)
                                                                    .sharer(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                .suggestions(List.of(
                                                                                    QuerySuggestion.builder()
                                                                                        .query("app:github type:pull author:mortimer")
                                                                                        .label("Mortimer's PRs")
                                                                                        .datasource("github")
                                                                                        .build()))
                                                                                .build())
                                                                            .inviteInfo(InviteInfo.builder()
                                                                                .invites(List.of(
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build()))
                                                                                .build())
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .build()))
                                                            .build())
                                                        .verification(Verification.builder()
                                                            .state(State.DEPRECATED)
                                                            .metadata(VerificationMetadata.builder()
                                                                .lastVerifier(Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .metadata(PersonMetadata.builder()
                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                        .title("Actor")
                                                                        .department("Movies")
                                                                        .email("george@example.com")
                                                                        .location("Hollywood, CA")
                                                                        .phone("6505551234")
                                                                        .photoUrl("https://example.com/george.jpg")
                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                        .datasourceProfile(List.of(
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build()))
                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                            .suggestions(List.of(
                                                                                QuerySuggestion.builder()
                                                                                    .query("app:github type:pull author:mortimer")
                                                                                    .label("Mortimer's PRs")
                                                                                    .datasource("github")
                                                                                    .build()))
                                                                            .build())
                                                                        .inviteInfo(InviteInfo.builder()
                                                                            .invites(List.of(
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build()))
                                                                            .build())
                                                                        .badges(List.of(
                                                                            Badge.builder()
                                                                                .key("deployment_name_new_hire")
                                                                                .displayName("New hire")
                                                                                .iconConfig(IconConfig.builder()
                                                                                    .color("#343CED")
                                                                                    .key("person_icon")
                                                                                    .iconType(IconType.GLYPH)
                                                                                    .name("user")
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build())
                                                                .reminders(List.of(
                                                                    Reminder.builder()
                                                                        .assignee(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .remindAt(785622L)
                                                                        .requestor(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .build(),
                                                                    Reminder.builder()
                                                                        .assignee(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .remindAt(785622L)
                                                                        .requestor(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .build(),
                                                                    Reminder.builder()
                                                                        .assignee(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .remindAt(785622L)
                                                                        .requestor(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .build()))
                                                                .lastReminder(Reminder.builder()
                                                                    .assignee(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                .suggestions(List.of(
                                                                                    QuerySuggestion.builder()
                                                                                        .query("app:github type:pull author:mortimer")
                                                                                        .label("Mortimer's PRs")
                                                                                        .datasource("github")
                                                                                        .build()))
                                                                                .build())
                                                                            .inviteInfo(InviteInfo.builder()
                                                                                .invites(List.of(
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build()))
                                                                                .build())
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .remindAt(269943L)
                                                                    .requestor(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                .suggestions(List.of(
                                                                                    QuerySuggestion.builder()
                                                                                        .query("app:github type:pull author:mortimer")
                                                                                        .label("Mortimer's PRs")
                                                                                        .datasource("github")
                                                                                        .build()))
                                                                                .build())
                                                                            .inviteInfo(InviteInfo.builder()
                                                                                .invites(List.of(
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build()))
                                                                                .build())
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .build())
                                                                .candidateVerifiers(List.of(
                                                                    Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .build()))
                                                                .build())
                                                            .build())
                                                        .shortcuts(List.of(
                                                            Shortcut.builder()
                                                                .inputAlias("<value>")
                                                                .createdBy(Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .metadata(PersonMetadata.builder()
                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                        .title("Actor")
                                                                        .department("Movies")
                                                                        .email("george@example.com")
                                                                        .location("Hollywood, CA")
                                                                        .phone("6505551234")
                                                                        .photoUrl("https://example.com/george.jpg")
                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                        .datasourceProfile(List.of(
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build()))
                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                            .suggestions(List.of(
                                                                                QuerySuggestion.builder()
                                                                                    .query("app:github type:pull author:mortimer")
                                                                                    .label("Mortimer's PRs")
                                                                                    .datasource("github")
                                                                                    .build()))
                                                                            .build())
                                                                        .inviteInfo(InviteInfo.builder()
                                                                            .invites(List.of(
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build()))
                                                                            .build())
                                                                        .badges(List.of(
                                                                            Badge.builder()
                                                                                .key("deployment_name_new_hire")
                                                                                .displayName("New hire")
                                                                                .iconConfig(IconConfig.builder()
                                                                                    .color("#343CED")
                                                                                    .key("person_icon")
                                                                                    .iconType(IconType.GLYPH)
                                                                                    .name("user")
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build())
                                                                .updatedBy(Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .metadata(PersonMetadata.builder()
                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                        .title("Actor")
                                                                        .department("Movies")
                                                                        .email("george@example.com")
                                                                        .location("Hollywood, CA")
                                                                        .phone("6505551234")
                                                                        .photoUrl("https://example.com/george.jpg")
                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                        .datasourceProfile(List.of(
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build()))
                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                            .suggestions(List.of(
                                                                                QuerySuggestion.builder()
                                                                                    .query("app:github type:pull author:mortimer")
                                                                                    .label("Mortimer's PRs")
                                                                                    .datasource("github")
                                                                                    .build()))
                                                                            .build())
                                                                        .inviteInfo(InviteInfo.builder()
                                                                            .invites(List.of(
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build()))
                                                                            .build())
                                                                        .badges(List.of(
                                                                            Badge.builder()
                                                                                .key("deployment_name_new_hire")
                                                                                .displayName("New hire")
                                                                                .iconConfig(IconConfig.builder()
                                                                                    .color("#343CED")
                                                                                    .key("person_icon")
                                                                                    .iconType(IconType.GLYPH)
                                                                                    .name("user")
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build())
                                                                .build()))
                                                        .customData(Map.ofEntries(
                                                            Map.entry("someCustomField", CustomDataValue.builder()
                                                                .build())))
                                                        .contactPerson(Person.builder()
                                                            .name("George Clooney")
                                                            .obfuscatedId("abc123")
                                                            .metadata(PersonMetadata.builder()
                                                                .type(PersonMetadataType.FULL_TIME)
                                                                .title("Actor")
                                                                .department("Movies")
                                                                .email("george@example.com")
                                                                .location("Hollywood, CA")
                                                                .phone("6505551234")
                                                                .photoUrl("https://example.com/george.jpg")
                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                .datasourceProfile(List.of(
                                                                    DatasourceProfile.builder()
                                                                        .datasource("github")
                                                                        .handle("<value>")
                                                                        .build(),
                                                                    DatasourceProfile.builder()
                                                                        .datasource("github")
                                                                        .handle("<value>")
                                                                        .build()))
                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                    .suggestions(List.of(
                                                                        QuerySuggestion.builder()
                                                                            .query("app:github type:pull author:mortimer")
                                                                            .label("Mortimer's PRs")
                                                                            .datasource("github")
                                                                            .build()))
                                                                    .build())
                                                                .inviteInfo(InviteInfo.builder()
                                                                    .invites(List.of(
                                                                        ChannelInviteInfo.builder()
                                                                            .build(),
                                                                        ChannelInviteInfo.builder()
                                                                            .build(),
                                                                        ChannelInviteInfo.builder()
                                                                            .build()))
                                                                    .build())
                                                                .badges(List.of(
                                                                    Badge.builder()
                                                                        .key("deployment_name_new_hire")
                                                                        .displayName("New hire")
                                                                        .iconConfig(IconConfig.builder()
                                                                            .color("#343CED")
                                                                            .key("person_icon")
                                                                            .iconType(IconType.GLYPH)
                                                                            .name("user")
                                                                            .build())
                                                                        .build()))
                                                                .build())
                                                            .build())
                                                        .build())
                                                    .build())
                                                .person(Person.builder()
                                                    .name("George Clooney")
                                                    .obfuscatedId("abc123")
                                                    .metadata(PersonMetadata.builder()
                                                        .type(PersonMetadataType.FULL_TIME)
                                                        .title("Actor")
                                                        .department("Movies")
                                                        .email("george@example.com")
                                                        .location("Hollywood, CA")
                                                        .phone("6505551234")
                                                        .photoUrl("https://example.com/george.jpg")
                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                        .datasourceProfile(List.of(
                                                            DatasourceProfile.builder()
                                                                .datasource("github")
                                                                .handle("<value>")
                                                                .build()))
                                                        .querySuggestions(QuerySuggestionList.builder()
                                                            .suggestions(List.of(
                                                                QuerySuggestion.builder()
                                                                    .query("app:github type:pull author:mortimer")
                                                                    .label("Mortimer's PRs")
                                                                    .datasource("github")
                                                                    .build()))
                                                            .build())
                                                        .inviteInfo(InviteInfo.builder()
                                                            .invites(List.of(
                                                                ChannelInviteInfo.builder()
                                                                    .build(),
                                                                ChannelInviteInfo.builder()
                                                                    .build(),
                                                                ChannelInviteInfo.builder()
                                                                    .build()))
                                                            .build())
                                                        .badges(List.of(
                                                            Badge.builder()
                                                                .key("deployment_name_new_hire")
                                                                .displayName("New hire")
                                                                .iconConfig(IconConfig.builder()
                                                                    .color("#343CED")
                                                                    .key("person_icon")
                                                                    .iconType(IconType.GLYPH)
                                                                    .name("user")
                                                                    .build())
                                                                .build()))
                                                        .build())
                                                    .build())
                                                .customer(Customer.builder()
                                                    .id("<id>")
                                                    .company(Company.builder()
                                                        .name("<value>")
                                                        .location("New York City")
                                                        .industry("Finances")
                                                        .about("Financial, software, data, and media company headquartered in Midtown Manhattan, New York City")
                                                        .build())
                                                    .poc(List.of(
                                                        Person.builder()
                                                            .name("George Clooney")
                                                            .obfuscatedId("abc123")
                                                            .build()))
                                                    .notes("CIO is interested in trying out the product.")
                                                    .build())
                                                .team(Team.builder()
                                                    .id("<id>")
                                                    .name("<value>")
                                                    .members(List.of(
                                                        PersonToTeamRelationship.builder()
                                                            .person(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                        .suggestions(List.of(
                                                                            QuerySuggestion.builder()
                                                                                .query("app:github type:pull author:mortimer")
                                                                                .label("Mortimer's PRs")
                                                                                .datasource("github")
                                                                                .build()))
                                                                        .build())
                                                                    .inviteInfo(InviteInfo.builder()
                                                                        .invites(List.of(
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build()))
                                                                        .build())
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .build(),
                                                        PersonToTeamRelationship.builder()
                                                            .person(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                        .suggestions(List.of(
                                                                            QuerySuggestion.builder()
                                                                                .query("app:github type:pull author:mortimer")
                                                                                .label("Mortimer's PRs")
                                                                                .datasource("github")
                                                                                .build()))
                                                                        .build())
                                                                    .inviteInfo(InviteInfo.builder()
                                                                        .invites(List.of(
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build()))
                                                                        .build())
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .build(),
                                                        PersonToTeamRelationship.builder()
                                                            .person(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                        .suggestions(List.of(
                                                                            QuerySuggestion.builder()
                                                                                .query("app:github type:pull author:mortimer")
                                                                                .label("Mortimer's PRs")
                                                                                .datasource("github")
                                                                                .build()))
                                                                        .build())
                                                                    .inviteInfo(InviteInfo.builder()
                                                                        .invites(List.of(
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build()))
                                                                        .build())
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .build()))
                                                    .datasourceProfiles(List.of(
                                                        DatasourceProfile.builder()
                                                            .datasource("github")
                                                            .handle("<value>")
                                                            .build()))
                                                    .build())
                                                .answer(Answer.builder()
                                                    .id(3L)
                                                    .docId("ANSWERS_answer_3")
                                                    .question("Why is the sky blue?")
                                                    .bodyText("From https://en.wikipedia.org/wiki/Diffuse_sky_radiation, the sky is blue because blue light is more strongly scattered than longer-wavelength light.")
                                                    .audienceFilters(List.of(
                                                        FacetFilter.builder()
                                                            .fieldName("type")
                                                            .values(List.of(
                                                                FacetFilterValue.builder()
                                                                    .value("Spreadsheet")
                                                                    .relationType(RelationType.EQUALS)
                                                                    .build(),
                                                                FacetFilterValue.builder()
                                                                    .value("Presentation")
                                                                    .relationType(RelationType.EQUALS)
                                                                    .build()))
                                                            .build()))
                                                    .likes(AnswerLikes.builder()
                                                        .likedBy(List.of(
                                                            AnswerLike.builder()
                                                                .user(Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .metadata(PersonMetadata.builder()
                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                        .title("Actor")
                                                                        .department("Movies")
                                                                        .email("george@example.com")
                                                                        .location("Hollywood, CA")
                                                                        .phone("6505551234")
                                                                        .photoUrl("https://example.com/george.jpg")
                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                        .datasourceProfile(List.of(
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build()))
                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                            .suggestions(List.of(
                                                                                QuerySuggestion.builder()
                                                                                    .query("app:github type:pull author:mortimer")
                                                                                    .label("Mortimer's PRs")
                                                                                    .datasource("github")
                                                                                    .build()))
                                                                            .build())
                                                                        .inviteInfo(InviteInfo.builder()
                                                                            .invites(List.of(
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build()))
                                                                            .build())
                                                                        .badges(List.of(
                                                                            Badge.builder()
                                                                                .key("deployment_name_new_hire")
                                                                                .displayName("New hire")
                                                                                .iconConfig(IconConfig.builder()
                                                                                    .color("#343CED")
                                                                                    .key("person_icon")
                                                                                    .iconType(IconType.GLYPH)
                                                                                    .name("user")
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build())
                                                                .build(),
                                                            AnswerLike.builder()
                                                                .user(Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .metadata(PersonMetadata.builder()
                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                        .title("Actor")
                                                                        .department("Movies")
                                                                        .email("george@example.com")
                                                                        .location("Hollywood, CA")
                                                                        .phone("6505551234")
                                                                        .photoUrl("https://example.com/george.jpg")
                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                        .datasourceProfile(List.of(
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build()))
                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                            .suggestions(List.of(
                                                                                QuerySuggestion.builder()
                                                                                    .query("app:github type:pull author:mortimer")
                                                                                    .label("Mortimer's PRs")
                                                                                    .datasource("github")
                                                                                    .build()))
                                                                            .build())
                                                                        .inviteInfo(InviteInfo.builder()
                                                                            .invites(List.of(
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build()))
                                                                            .build())
                                                                        .badges(List.of(
                                                                            Badge.builder()
                                                                                .key("deployment_name_new_hire")
                                                                                .displayName("New hire")
                                                                                .iconConfig(IconConfig.builder()
                                                                                    .color("#343CED")
                                                                                    .key("person_icon")
                                                                                    .iconType(IconType.GLYPH)
                                                                                    .name("user")
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build())
                                                                .build()))
                                                        .likedByUser(false)
                                                        .numLikes(572532L)
                                                        .build())
                                                    .author(Person.builder()
                                                        .name("George Clooney")
                                                        .obfuscatedId("abc123")
                                                        .metadata(PersonMetadata.builder()
                                                            .type(PersonMetadataType.FULL_TIME)
                                                            .title("Actor")
                                                            .department("Movies")
                                                            .email("george@example.com")
                                                            .location("Hollywood, CA")
                                                            .phone("6505551234")
                                                            .photoUrl("https://example.com/george.jpg")
                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                            .datasourceProfile(List.of(
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build(),
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build(),
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build()))
                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                .suggestions(List.of(
                                                                    QuerySuggestion.builder()
                                                                        .query("app:github type:pull author:mortimer")
                                                                        .label("Mortimer's PRs")
                                                                        .datasource("github")
                                                                        .build()))
                                                                .build())
                                                            .inviteInfo(InviteInfo.builder()
                                                                .invites(List.of(
                                                                    ChannelInviteInfo.builder()
                                                                        .build(),
                                                                    ChannelInviteInfo.builder()
                                                                        .build(),
                                                                    ChannelInviteInfo.builder()
                                                                        .build()))
                                                                .build())
                                                            .badges(List.of(
                                                                Badge.builder()
                                                                    .key("deployment_name_new_hire")
                                                                    .displayName("New hire")
                                                                    .iconConfig(IconConfig.builder()
                                                                        .color("#343CED")
                                                                        .key("person_icon")
                                                                        .iconType(IconType.GLYPH)
                                                                        .name("user")
                                                                        .build())
                                                                    .build()))
                                                            .build())
                                                        .build())
                                                    .updatedBy(Person.builder()
                                                        .name("George Clooney")
                                                        .obfuscatedId("abc123")
                                                        .metadata(PersonMetadata.builder()
                                                            .type(PersonMetadataType.FULL_TIME)
                                                            .title("Actor")
                                                            .department("Movies")
                                                            .email("george@example.com")
                                                            .location("Hollywood, CA")
                                                            .phone("6505551234")
                                                            .photoUrl("https://example.com/george.jpg")
                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                            .datasourceProfile(List.of(
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build(),
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build(),
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build()))
                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                .suggestions(List.of(
                                                                    QuerySuggestion.builder()
                                                                        .query("app:github type:pull author:mortimer")
                                                                        .label("Mortimer's PRs")
                                                                        .datasource("github")
                                                                        .build()))
                                                                .build())
                                                            .inviteInfo(InviteInfo.builder()
                                                                .invites(List.of(
                                                                    ChannelInviteInfo.builder()
                                                                        .build(),
                                                                    ChannelInviteInfo.builder()
                                                                        .build(),
                                                                    ChannelInviteInfo.builder()
                                                                        .build()))
                                                                .build())
                                                            .badges(List.of(
                                                                Badge.builder()
                                                                    .key("deployment_name_new_hire")
                                                                    .displayName("New hire")
                                                                    .iconConfig(IconConfig.builder()
                                                                        .color("#343CED")
                                                                        .key("person_icon")
                                                                        .iconType(IconType.GLYPH)
                                                                        .name("user")
                                                                        .build())
                                                                    .build()))
                                                            .build())
                                                        .build())
                                                    .verification(Verification.builder()
                                                        .state(State.DEPRECATED)
                                                        .metadata(VerificationMetadata.builder()
                                                            .lastVerifier(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                        .suggestions(List.of(
                                                                            QuerySuggestion.builder()
                                                                                .query("app:github type:pull author:mortimer")
                                                                                .label("Mortimer's PRs")
                                                                                .datasource("github")
                                                                                .build()))
                                                                        .build())
                                                                    .inviteInfo(InviteInfo.builder()
                                                                        .invites(List.of(
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build()))
                                                                        .build())
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .document(Document.builder()
                                                                .metadata(DocumentMetadata.builder()
                                                                    .datasource("datasource")
                                                                    .objectType("Feature Request")
                                                                    .container("container")
                                                                    .parentId("JIRA_EN-1337")
                                                                    .mimeType("mimeType")
                                                                    .documentId("documentId")
                                                                    .createTime(OffsetDateTime.parse("2000-01-23T04:56:07.000Z"))
                                                                    .updateTime(OffsetDateTime.parse("2000-01-23T04:56:07.000Z"))
                                                                    .author(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .owner(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .components(List.of(
                                                                        "Backend",
                                                                        "Networking"))
                                                                    .status("[\"Done\"]")
                                                                    .assignedTo(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .updatedBy(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .customData(Map.ofEntries(
                                                                        Map.entry("someCustomField", CustomDataValue.builder()
                                                                            .build())))
                                                                    .contactPerson(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .build())
                                                                .build())
                                                            .reminders(List.of(
                                                                Reminder.builder()
                                                                    .assignee(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                .suggestions(List.of(
                                                                                    QuerySuggestion.builder()
                                                                                        .query("app:github type:pull author:mortimer")
                                                                                        .label("Mortimer's PRs")
                                                                                        .datasource("github")
                                                                                        .build()))
                                                                                .build())
                                                                            .inviteInfo(InviteInfo.builder()
                                                                                .invites(List.of(
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build()))
                                                                                .build())
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .remindAt(785622L)
                                                                    .requestor(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                .suggestions(List.of(
                                                                                    QuerySuggestion.builder()
                                                                                        .query("app:github type:pull author:mortimer")
                                                                                        .label("Mortimer's PRs")
                                                                                        .datasource("github")
                                                                                        .build()))
                                                                                .build())
                                                                            .inviteInfo(InviteInfo.builder()
                                                                                .invites(List.of(
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build()))
                                                                                .build())
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .build(),
                                                                Reminder.builder()
                                                                    .assignee(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                .suggestions(List.of(
                                                                                    QuerySuggestion.builder()
                                                                                        .query("app:github type:pull author:mortimer")
                                                                                        .label("Mortimer's PRs")
                                                                                        .datasource("github")
                                                                                        .build()))
                                                                                .build())
                                                                            .inviteInfo(InviteInfo.builder()
                                                                                .invites(List.of(
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build()))
                                                                                .build())
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .remindAt(785622L)
                                                                    .requestor(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                .suggestions(List.of(
                                                                                    QuerySuggestion.builder()
                                                                                        .query("app:github type:pull author:mortimer")
                                                                                        .label("Mortimer's PRs")
                                                                                        .datasource("github")
                                                                                        .build()))
                                                                                .build())
                                                                            .inviteInfo(InviteInfo.builder()
                                                                                .invites(List.of(
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build()))
                                                                                .build())
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .build(),
                                                                Reminder.builder()
                                                                    .assignee(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                .suggestions(List.of(
                                                                                    QuerySuggestion.builder()
                                                                                        .query("app:github type:pull author:mortimer")
                                                                                        .label("Mortimer's PRs")
                                                                                        .datasource("github")
                                                                                        .build()))
                                                                                .build())
                                                                            .inviteInfo(InviteInfo.builder()
                                                                                .invites(List.of(
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build()))
                                                                                .build())
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .remindAt(785622L)
                                                                    .requestor(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                .suggestions(List.of(
                                                                                    QuerySuggestion.builder()
                                                                                        .query("app:github type:pull author:mortimer")
                                                                                        .label("Mortimer's PRs")
                                                                                        .datasource("github")
                                                                                        .build()))
                                                                                .build())
                                                                            .inviteInfo(InviteInfo.builder()
                                                                                .invites(List.of(
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build()))
                                                                                .build())
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .build()))
                                                            .lastReminder(Reminder.builder()
                                                                .assignee(Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .metadata(PersonMetadata.builder()
                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                        .title("Actor")
                                                                        .department("Movies")
                                                                        .email("george@example.com")
                                                                        .location("Hollywood, CA")
                                                                        .phone("6505551234")
                                                                        .photoUrl("https://example.com/george.jpg")
                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                        .datasourceProfile(List.of(
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build()))
                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                            .suggestions(List.of(
                                                                                QuerySuggestion.builder()
                                                                                    .query("app:github type:pull author:mortimer")
                                                                                    .label("Mortimer's PRs")
                                                                                    .datasource("github")
                                                                                    .build()))
                                                                            .build())
                                                                        .inviteInfo(InviteInfo.builder()
                                                                            .invites(List.of(
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build()))
                                                                            .build())
                                                                        .badges(List.of(
                                                                            Badge.builder()
                                                                                .key("deployment_name_new_hire")
                                                                                .displayName("New hire")
                                                                                .iconConfig(IconConfig.builder()
                                                                                    .color("#343CED")
                                                                                    .key("person_icon")
                                                                                    .iconType(IconType.GLYPH)
                                                                                    .name("user")
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build())
                                                                .remindAt(269943L)
                                                                .requestor(Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .metadata(PersonMetadata.builder()
                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                        .title("Actor")
                                                                        .department("Movies")
                                                                        .email("george@example.com")
                                                                        .location("Hollywood, CA")
                                                                        .phone("6505551234")
                                                                        .photoUrl("https://example.com/george.jpg")
                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                        .datasourceProfile(List.of(
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build()))
                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                            .suggestions(List.of(
                                                                                QuerySuggestion.builder()
                                                                                    .query("app:github type:pull author:mortimer")
                                                                                    .label("Mortimer's PRs")
                                                                                    .datasource("github")
                                                                                    .build()))
                                                                            .build())
                                                                        .inviteInfo(InviteInfo.builder()
                                                                            .invites(List.of(
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build()))
                                                                            .build())
                                                                        .badges(List.of(
                                                                            Badge.builder()
                                                                                .key("deployment_name_new_hire")
                                                                                .displayName("New hire")
                                                                                .iconConfig(IconConfig.builder()
                                                                                    .color("#343CED")
                                                                                    .key("person_icon")
                                                                                    .iconType(IconType.GLYPH)
                                                                                    .name("user")
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build())
                                                                .build())
                                                            .candidateVerifiers(List.of(
                                                                Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .build()))
                                                            .build())
                                                        .build())
                                                    .sourceDocument(Document.builder()
                                                        .metadata(DocumentMetadata.builder()
                                                            .datasource("datasource")
                                                            .objectType("Feature Request")
                                                            .container("container")
                                                            .parentId("JIRA_EN-1337")
                                                            .mimeType("mimeType")
                                                            .documentId("documentId")
                                                            .createTime(OffsetDateTime.parse("2000-01-23T04:56:07.000Z"))
                                                            .updateTime(OffsetDateTime.parse("2000-01-23T04:56:07.000Z"))
                                                            .author(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                        .suggestions(List.of(
                                                                            QuerySuggestion.builder()
                                                                                .query("app:github type:pull author:mortimer")
                                                                                .label("Mortimer's PRs")
                                                                                .datasource("github")
                                                                                .build()))
                                                                        .build())
                                                                    .inviteInfo(InviteInfo.builder()
                                                                        .invites(List.of(
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build()))
                                                                        .build())
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .owner(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                        .suggestions(List.of(
                                                                            QuerySuggestion.builder()
                                                                                .query("app:github type:pull author:mortimer")
                                                                                .label("Mortimer's PRs")
                                                                                .datasource("github")
                                                                                .build()))
                                                                        .build())
                                                                    .inviteInfo(InviteInfo.builder()
                                                                        .invites(List.of(
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build()))
                                                                        .build())
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .components(List.of(
                                                                "Backend",
                                                                "Networking"))
                                                            .status("[\"Done\"]")
                                                            .assignedTo(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                        .suggestions(List.of(
                                                                            QuerySuggestion.builder()
                                                                                .query("app:github type:pull author:mortimer")
                                                                                .label("Mortimer's PRs")
                                                                                .datasource("github")
                                                                                .build()))
                                                                        .build())
                                                                    .inviteInfo(InviteInfo.builder()
                                                                        .invites(List.of(
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build()))
                                                                        .build())
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .updatedBy(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                        .suggestions(List.of(
                                                                            QuerySuggestion.builder()
                                                                                .query("app:github type:pull author:mortimer")
                                                                                .label("Mortimer's PRs")
                                                                                .datasource("github")
                                                                                .build()))
                                                                        .build())
                                                                    .inviteInfo(InviteInfo.builder()
                                                                        .invites(List.of(
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build()))
                                                                        .build())
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .interactions(DocumentInteractions.builder()
                                                                .reacts(List.of(
                                                                    Reaction.builder()
                                                                        .reactors(List.of(
                                                                            Person.builder()
                                                                                .name("George Clooney")
                                                                                .obfuscatedId("abc123")
                                                                                .build()))
                                                                        .build(),
                                                                    Reaction.builder()
                                                                        .reactors(List.of(
                                                                            Person.builder()
                                                                                .name("George Clooney")
                                                                                .obfuscatedId("abc123")
                                                                                .build()))
                                                                        .build()))
                                                                .shares(List.of(
                                                                    Share.builder()
                                                                        .numDaysAgo(582012L)
                                                                        .sharer(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .build()))
                                                                .build())
                                                            .verification(Verification.builder()
                                                                .state(State.DEPRECATED)
                                                                .metadata(VerificationMetadata.builder()
                                                                    .lastVerifier(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                .suggestions(List.of(
                                                                                    QuerySuggestion.builder()
                                                                                        .query("app:github type:pull author:mortimer")
                                                                                        .label("Mortimer's PRs")
                                                                                        .datasource("github")
                                                                                        .build()))
                                                                                .build())
                                                                            .inviteInfo(InviteInfo.builder()
                                                                                .invites(List.of(
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build(),
                                                                                    ChannelInviteInfo.builder()
                                                                                        .build()))
                                                                                .build())
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .reminders(List.of(
                                                                        Reminder.builder()
                                                                            .assignee(Person.builder()
                                                                                .name("George Clooney")
                                                                                .obfuscatedId("abc123")
                                                                                .metadata(PersonMetadata.builder()
                                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                                    .title("Actor")
                                                                                    .department("Movies")
                                                                                    .email("george@example.com")
                                                                                    .location("Hollywood, CA")
                                                                                    .phone("6505551234")
                                                                                    .photoUrl("https://example.com/george.jpg")
                                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                                    .datasourceProfile(List.of(
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build(),
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build(),
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build()))
                                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                                        .suggestions(List.of(
                                                                                            QuerySuggestion.builder()
                                                                                                .query("app:github type:pull author:mortimer")
                                                                                                .label("Mortimer's PRs")
                                                                                                .datasource("github")
                                                                                                .build()))
                                                                                        .build())
                                                                                    .inviteInfo(InviteInfo.builder()
                                                                                        .invites(List.of(
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build()))
                                                                                        .build())
                                                                                    .badges(List.of(
                                                                                        Badge.builder()
                                                                                            .key("deployment_name_new_hire")
                                                                                            .displayName("New hire")
                                                                                            .iconConfig(IconConfig.builder()
                                                                                                .color("#343CED")
                                                                                                .key("person_icon")
                                                                                                .iconType(IconType.GLYPH)
                                                                                                .name("user")
                                                                                                .build())
                                                                                            .build()))
                                                                                    .build())
                                                                                .build())
                                                                            .remindAt(785622L)
                                                                            .requestor(Person.builder()
                                                                                .name("George Clooney")
                                                                                .obfuscatedId("abc123")
                                                                                .metadata(PersonMetadata.builder()
                                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                                    .title("Actor")
                                                                                    .department("Movies")
                                                                                    .email("george@example.com")
                                                                                    .location("Hollywood, CA")
                                                                                    .phone("6505551234")
                                                                                    .photoUrl("https://example.com/george.jpg")
                                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                                    .datasourceProfile(List.of(
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build(),
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build()))
                                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                                        .suggestions(List.of(
                                                                                            QuerySuggestion.builder()
                                                                                                .query("app:github type:pull author:mortimer")
                                                                                                .label("Mortimer's PRs")
                                                                                                .datasource("github")
                                                                                                .build()))
                                                                                        .build())
                                                                                    .inviteInfo(InviteInfo.builder()
                                                                                        .invites(List.of(
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build()))
                                                                                        .build())
                                                                                    .badges(List.of(
                                                                                        Badge.builder()
                                                                                            .key("deployment_name_new_hire")
                                                                                            .displayName("New hire")
                                                                                            .iconConfig(IconConfig.builder()
                                                                                                .color("#343CED")
                                                                                                .key("person_icon")
                                                                                                .iconType(IconType.GLYPH)
                                                                                                .name("user")
                                                                                                .build())
                                                                                            .build()))
                                                                                    .build())
                                                                                .build())
                                                                            .build(),
                                                                        Reminder.builder()
                                                                            .assignee(Person.builder()
                                                                                .name("George Clooney")
                                                                                .obfuscatedId("abc123")
                                                                                .metadata(PersonMetadata.builder()
                                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                                    .title("Actor")
                                                                                    .department("Movies")
                                                                                    .email("george@example.com")
                                                                                    .location("Hollywood, CA")
                                                                                    .phone("6505551234")
                                                                                    .photoUrl("https://example.com/george.jpg")
                                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                                    .datasourceProfile(List.of(
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build(),
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build(),
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build()))
                                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                                        .suggestions(List.of(
                                                                                            QuerySuggestion.builder()
                                                                                                .query("app:github type:pull author:mortimer")
                                                                                                .label("Mortimer's PRs")
                                                                                                .datasource("github")
                                                                                                .build()))
                                                                                        .build())
                                                                                    .inviteInfo(InviteInfo.builder()
                                                                                        .invites(List.of(
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build()))
                                                                                        .build())
                                                                                    .badges(List.of(
                                                                                        Badge.builder()
                                                                                            .key("deployment_name_new_hire")
                                                                                            .displayName("New hire")
                                                                                            .iconConfig(IconConfig.builder()
                                                                                                .color("#343CED")
                                                                                                .key("person_icon")
                                                                                                .iconType(IconType.GLYPH)
                                                                                                .name("user")
                                                                                                .build())
                                                                                            .build()))
                                                                                    .build())
                                                                                .build())
                                                                            .remindAt(785622L)
                                                                            .requestor(Person.builder()
                                                                                .name("George Clooney")
                                                                                .obfuscatedId("abc123")
                                                                                .metadata(PersonMetadata.builder()
                                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                                    .title("Actor")
                                                                                    .department("Movies")
                                                                                    .email("george@example.com")
                                                                                    .location("Hollywood, CA")
                                                                                    .phone("6505551234")
                                                                                    .photoUrl("https://example.com/george.jpg")
                                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                                    .datasourceProfile(List.of(
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build(),
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build()))
                                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                                        .suggestions(List.of(
                                                                                            QuerySuggestion.builder()
                                                                                                .query("app:github type:pull author:mortimer")
                                                                                                .label("Mortimer's PRs")
                                                                                                .datasource("github")
                                                                                                .build()))
                                                                                        .build())
                                                                                    .inviteInfo(InviteInfo.builder()
                                                                                        .invites(List.of(
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build()))
                                                                                        .build())
                                                                                    .badges(List.of(
                                                                                        Badge.builder()
                                                                                            .key("deployment_name_new_hire")
                                                                                            .displayName("New hire")
                                                                                            .iconConfig(IconConfig.builder()
                                                                                                .color("#343CED")
                                                                                                .key("person_icon")
                                                                                                .iconType(IconType.GLYPH)
                                                                                                .name("user")
                                                                                                .build())
                                                                                            .build()))
                                                                                    .build())
                                                                                .build())
                                                                            .build(),
                                                                        Reminder.builder()
                                                                            .assignee(Person.builder()
                                                                                .name("George Clooney")
                                                                                .obfuscatedId("abc123")
                                                                                .metadata(PersonMetadata.builder()
                                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                                    .title("Actor")
                                                                                    .department("Movies")
                                                                                    .email("george@example.com")
                                                                                    .location("Hollywood, CA")
                                                                                    .phone("6505551234")
                                                                                    .photoUrl("https://example.com/george.jpg")
                                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                                    .datasourceProfile(List.of(
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build(),
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build(),
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build()))
                                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                                        .suggestions(List.of(
                                                                                            QuerySuggestion.builder()
                                                                                                .query("app:github type:pull author:mortimer")
                                                                                                .label("Mortimer's PRs")
                                                                                                .datasource("github")
                                                                                                .build()))
                                                                                        .build())
                                                                                    .inviteInfo(InviteInfo.builder()
                                                                                        .invites(List.of(
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build()))
                                                                                        .build())
                                                                                    .badges(List.of(
                                                                                        Badge.builder()
                                                                                            .key("deployment_name_new_hire")
                                                                                            .displayName("New hire")
                                                                                            .iconConfig(IconConfig.builder()
                                                                                                .color("#343CED")
                                                                                                .key("person_icon")
                                                                                                .iconType(IconType.GLYPH)
                                                                                                .name("user")
                                                                                                .build())
                                                                                            .build()))
                                                                                    .build())
                                                                                .build())
                                                                            .remindAt(785622L)
                                                                            .requestor(Person.builder()
                                                                                .name("George Clooney")
                                                                                .obfuscatedId("abc123")
                                                                                .metadata(PersonMetadata.builder()
                                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                                    .title("Actor")
                                                                                    .department("Movies")
                                                                                    .email("george@example.com")
                                                                                    .location("Hollywood, CA")
                                                                                    .phone("6505551234")
                                                                                    .photoUrl("https://example.com/george.jpg")
                                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                                    .datasourceProfile(List.of(
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build(),
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build()))
                                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                                        .suggestions(List.of(
                                                                                            QuerySuggestion.builder()
                                                                                                .query("app:github type:pull author:mortimer")
                                                                                                .label("Mortimer's PRs")
                                                                                                .datasource("github")
                                                                                                .build()))
                                                                                        .build())
                                                                                    .inviteInfo(InviteInfo.builder()
                                                                                        .invites(List.of(
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build()))
                                                                                        .build())
                                                                                    .badges(List.of(
                                                                                        Badge.builder()
                                                                                            .key("deployment_name_new_hire")
                                                                                            .displayName("New hire")
                                                                                            .iconConfig(IconConfig.builder()
                                                                                                .color("#343CED")
                                                                                                .key("person_icon")
                                                                                                .iconType(IconType.GLYPH)
                                                                                                .name("user")
                                                                                                .build())
                                                                                            .build()))
                                                                                    .build())
                                                                                .build())
                                                                            .build()))
                                                                    .lastReminder(Reminder.builder()
                                                                        .assignee(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .remindAt(269943L)
                                                                        .requestor(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .build())
                                                                    .candidateVerifiers(List.of(
                                                                        Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .customData(Map.ofEntries(
                                                                Map.entry("someCustomField", CustomDataValue.builder()
                                                                    .build())))
                                                            .contactPerson(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                        .suggestions(List.of(
                                                                            QuerySuggestion.builder()
                                                                                .query("app:github type:pull author:mortimer")
                                                                                .label("Mortimer's PRs")
                                                                                .datasource("github")
                                                                                .build()))
                                                                        .build())
                                                                    .inviteInfo(InviteInfo.builder()
                                                                        .invites(List.of(
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build()))
                                                                        .build())
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .build())
                                                        .build())
                                                    .build())
                                                .extractedQnA(ExtractedQnA.builder()
                                                    .questionResult(SearchResult.builder()
                                                        .url("https://example.com/foo/bar")
                                                        .document(Document.builder()
                                                            .metadata(DocumentMetadata.builder()
                                                                .datasource("datasource")
                                                                .objectType("Feature Request")
                                                                .container("container")
                                                                .parentId("JIRA_EN-1337")
                                                                .mimeType("mimeType")
                                                                .documentId("documentId")
                                                                .createTime(OffsetDateTime.parse("2000-01-23T04:56:07.000Z"))
                                                                .updateTime(OffsetDateTime.parse("2000-01-23T04:56:07.000Z"))
                                                                .author(Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .relatedDocuments(List.of(
                                                                        RelatedDocuments.builder()
                                                                            .querySuggestion(QuerySuggestion.builder()
                                                                                .query("app:github type:pull author:mortimer")
                                                                                .searchProviderInfo(SearchProviderInfo.builder()
                                                                                    .name("Google")
                                                                                    .searchLinkUrlTemplate("https://www.google.com/search?q={query}&hl=en")
                                                                                    .build())
                                                                                .label("Mortimer's PRs")
                                                                                .datasource("github")
                                                                                .requestOptions(SearchRequestOptions.builder()
                                                                                    .facetBucketSize(843281L)
                                                                                    .datasourceFilter("JIRA")
                                                                                    .datasourcesFilter(List.of(
                                                                                        "JIRA"))
                                                                                    .queryOverridesFacetFilters(true)
                                                                                    .facetFilters(List.of(
                                                                                        FacetFilter.builder()
                                                                                            .fieldName("type")
                                                                                            .values(List.of(
                                                                                                FacetFilterValue.builder()
                                                                                                    .value("Spreadsheet")
                                                                                                    .relationType(RelationType.EQUALS)
                                                                                                    .build(),
                                                                                                FacetFilterValue.builder()
                                                                                                    .value("Presentation")
                                                                                                    .relationType(RelationType.EQUALS)
                                                                                                    .build()))
                                                                                            .build()))
                                                                                    .facetFilterSets(List.of(
                                                                                        FacetFilterSet.builder()
                                                                                            .filters(List.of(
                                                                                                FacetFilter.builder()
                                                                                                    .fieldName("type")
                                                                                                    .values(List.of(
                                                                                                        FacetFilterValue.builder()
                                                                                                            .value("Spreadsheet")
                                                                                                            .relationType(RelationType.EQUALS)
                                                                                                            .build(),
                                                                                                        FacetFilterValue.builder()
                                                                                                            .value("Presentation")
                                                                                                            .relationType(RelationType.EQUALS)
                                                                                                            .build()))
                                                                                                    .build()))
                                                                                            .build(),
                                                                                        FacetFilterSet.builder()
                                                                                            .filters(List.of(
                                                                                                FacetFilter.builder()
                                                                                                    .fieldName("type")
                                                                                                    .values(List.of(
                                                                                                        FacetFilterValue.builder()
                                                                                                            .value("Spreadsheet")
                                                                                                            .relationType(RelationType.EQUALS)
                                                                                                            .build(),
                                                                                                        FacetFilterValue.builder()
                                                                                                            .value("Presentation")
                                                                                                            .relationType(RelationType.EQUALS)
                                                                                                            .build()))
                                                                                                    .build()))
                                                                                            .build()))
                                                                                    .authTokens(List.of(
                                                                                        AuthToken.builder()
                                                                                            .accessToken("123abc")
                                                                                            .datasource("gmail")
                                                                                            .scope("email profile https://www.googleapis.com/auth/gmail.readonly")
                                                                                            .tokenType("Bearer")
                                                                                            .authUser("1")
                                                                                            .build()))
                                                                                    .build())
                                                                                .ranges(List.of(
                                                                                    TextRange.builder()
                                                                                        .startIndex(925801L)
                                                                                        .build(),
                                                                                    TextRange.builder()
                                                                                        .startIndex(925801L)
                                                                                        .build(),
                                                                                    TextRange.builder()
                                                                                        .startIndex(925801L)
                                                                                        .build()))
                                                                                .inputDetails(SearchRequestInputDetails.builder()
                                                                                    .hasCopyPaste(true)
                                                                                    .build())
                                                                                .build())
                                                                            .build(),
                                                                        RelatedDocuments.builder()
                                                                            .querySuggestion(QuerySuggestion.builder()
                                                                                .query("app:github type:pull author:mortimer")
                                                                                .searchProviderInfo(SearchProviderInfo.builder()
                                                                                    .name("Google")
                                                                                    .searchLinkUrlTemplate("https://www.google.com/search?q={query}&hl=en")
                                                                                    .build())
                                                                                .label("Mortimer's PRs")
                                                                                .datasource("github")
                                                                                .requestOptions(SearchRequestOptions.builder()
                                                                                    .facetBucketSize(843281L)
                                                                                    .datasourceFilter("JIRA")
                                                                                    .datasourcesFilter(List.of(
                                                                                        "JIRA"))
                                                                                    .queryOverridesFacetFilters(true)
                                                                                    .facetFilters(List.of(
                                                                                        FacetFilter.builder()
                                                                                            .fieldName("type")
                                                                                            .values(List.of(
                                                                                                FacetFilterValue.builder()
                                                                                                    .value("Spreadsheet")
                                                                                                    .relationType(RelationType.EQUALS)
                                                                                                    .build(),
                                                                                                FacetFilterValue.builder()
                                                                                                    .value("Presentation")
                                                                                                    .relationType(RelationType.EQUALS)
                                                                                                    .build()))
                                                                                            .build()))
                                                                                    .facetFilterSets(List.of(
                                                                                        FacetFilterSet.builder()
                                                                                            .filters(List.of(
                                                                                                FacetFilter.builder()
                                                                                                    .fieldName("type")
                                                                                                    .values(List.of(
                                                                                                        FacetFilterValue.builder()
                                                                                                            .value("Spreadsheet")
                                                                                                            .relationType(RelationType.EQUALS)
                                                                                                            .build(),
                                                                                                        FacetFilterValue.builder()
                                                                                                            .value("Presentation")
                                                                                                            .relationType(RelationType.EQUALS)
                                                                                                            .build()))
                                                                                                    .build()))
                                                                                            .build(),
                                                                                        FacetFilterSet.builder()
                                                                                            .filters(List.of(
                                                                                                FacetFilter.builder()
                                                                                                    .fieldName("type")
                                                                                                    .values(List.of(
                                                                                                        FacetFilterValue.builder()
                                                                                                            .value("Spreadsheet")
                                                                                                            .relationType(RelationType.EQUALS)
                                                                                                            .build(),
                                                                                                        FacetFilterValue.builder()
                                                                                                            .value("Presentation")
                                                                                                            .relationType(RelationType.EQUALS)
                                                                                                            .build()))
                                                                                                    .build()))
                                                                                            .build()))
                                                                                    .authTokens(List.of(
                                                                                        AuthToken.builder()
                                                                                            .accessToken("123abc")
                                                                                            .datasource("gmail")
                                                                                            .scope("email profile https://www.googleapis.com/auth/gmail.readonly")
                                                                                            .tokenType("Bearer")
                                                                                            .authUser("1")
                                                                                            .build()))
                                                                                    .build())
                                                                                .ranges(List.of(
                                                                                    TextRange.builder()
                                                                                        .startIndex(925801L)
                                                                                        .build(),
                                                                                    TextRange.builder()
                                                                                        .startIndex(925801L)
                                                                                        .build(),
                                                                                    TextRange.builder()
                                                                                        .startIndex(925801L)
                                                                                        .build()))
                                                                                .inputDetails(SearchRequestInputDetails.builder()
                                                                                    .hasCopyPaste(true)
                                                                                    .build())
                                                                                .build())
                                                                            .build(),
                                                                        RelatedDocuments.builder()
                                                                            .querySuggestion(QuerySuggestion.builder()
                                                                                .query("app:github type:pull author:mortimer")
                                                                                .searchProviderInfo(SearchProviderInfo.builder()
                                                                                    .name("Google")
                                                                                    .searchLinkUrlTemplate("https://www.google.com/search?q={query}&hl=en")
                                                                                    .build())
                                                                                .label("Mortimer's PRs")
                                                                                .datasource("github")
                                                                                .requestOptions(SearchRequestOptions.builder()
                                                                                    .facetBucketSize(843281L)
                                                                                    .datasourceFilter("JIRA")
                                                                                    .datasourcesFilter(List.of(
                                                                                        "JIRA"))
                                                                                    .queryOverridesFacetFilters(true)
                                                                                    .facetFilters(List.of(
                                                                                        FacetFilter.builder()
                                                                                            .fieldName("type")
                                                                                            .values(List.of(
                                                                                                FacetFilterValue.builder()
                                                                                                    .value("Spreadsheet")
                                                                                                    .relationType(RelationType.EQUALS)
                                                                                                    .build(),
                                                                                                FacetFilterValue.builder()
                                                                                                    .value("Presentation")
                                                                                                    .relationType(RelationType.EQUALS)
                                                                                                    .build()))
                                                                                            .build()))
                                                                                    .facetFilterSets(List.of(
                                                                                        FacetFilterSet.builder()
                                                                                            .filters(List.of(
                                                                                                FacetFilter.builder()
                                                                                                    .fieldName("type")
                                                                                                    .values(List.of(
                                                                                                        FacetFilterValue.builder()
                                                                                                            .value("Spreadsheet")
                                                                                                            .relationType(RelationType.EQUALS)
                                                                                                            .build(),
                                                                                                        FacetFilterValue.builder()
                                                                                                            .value("Presentation")
                                                                                                            .relationType(RelationType.EQUALS)
                                                                                                            .build()))
                                                                                                    .build()))
                                                                                            .build(),
                                                                                        FacetFilterSet.builder()
                                                                                            .filters(List.of(
                                                                                                FacetFilter.builder()
                                                                                                    .fieldName("type")
                                                                                                    .values(List.of(
                                                                                                        FacetFilterValue.builder()
                                                                                                            .value("Spreadsheet")
                                                                                                            .relationType(RelationType.EQUALS)
                                                                                                            .build(),
                                                                                                        FacetFilterValue.builder()
                                                                                                            .value("Presentation")
                                                                                                            .relationType(RelationType.EQUALS)
                                                                                                            .build()))
                                                                                                    .build()))
                                                                                            .build()))
                                                                                    .authTokens(List.of(
                                                                                        AuthToken.builder()
                                                                                            .accessToken("123abc")
                                                                                            .datasource("gmail")
                                                                                            .scope("email profile https://www.googleapis.com/auth/gmail.readonly")
                                                                                            .tokenType("Bearer")
                                                                                            .authUser("1")
                                                                                            .build()))
                                                                                    .build())
                                                                                .ranges(List.of(
                                                                                    TextRange.builder()
                                                                                        .startIndex(925801L)
                                                                                        .build(),
                                                                                    TextRange.builder()
                                                                                        .startIndex(925801L)
                                                                                        .build(),
                                                                                    TextRange.builder()
                                                                                        .startIndex(925801L)
                                                                                        .build()))
                                                                                .inputDetails(SearchRequestInputDetails.builder()
                                                                                    .hasCopyPaste(true)
                                                                                    .build())
                                                                                .build())
                                                                            .build()))
                                                                    .metadata(PersonMetadata.builder()
                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                        .title("Actor")
                                                                        .department("Movies")
                                                                        .email("george@example.com")
                                                                        .location("Hollywood, CA")
                                                                        .phone("6505551234")
                                                                        .photoUrl("https://example.com/george.jpg")
                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                        .datasourceProfile(List.of(
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build()))
                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                            .suggestions(List.of(
                                                                                QuerySuggestion.builder()
                                                                                    .query("app:github type:pull author:mortimer")
                                                                                    .label("Mortimer's PRs")
                                                                                    .datasource("github")
                                                                                    .build()))
                                                                            .build())
                                                                        .inviteInfo(InviteInfo.builder()
                                                                            .invites(List.of(
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build()))
                                                                            .build())
                                                                        .customFields(List.of(
                                                                            CustomFieldData.builder()
                                                                                .label("<value>")
                                                                                .values(List.of(
                                                                                    CustomFieldValue.of(CustomFieldValueStr.builder()
                                                                                        .build()),
                                                                                    CustomFieldValue.of(CustomFieldValueStr.builder()
                                                                                        .build())))
                                                                                .build(),
                                                                            CustomFieldData.builder()
                                                                                .label("<value>")
                                                                                .values(List.of(
                                                                                    CustomFieldValue.of(CustomFieldValueStr.builder()
                                                                                        .build()),
                                                                                    CustomFieldValue.of(CustomFieldValueStr.builder()
                                                                                        .build())))
                                                                                .build(),
                                                                            CustomFieldData.builder()
                                                                                .label("<value>")
                                                                                .values(List.of(
                                                                                    CustomFieldValue.of(CustomFieldValueStr.builder()
                                                                                        .build()),
                                                                                    CustomFieldValue.of(CustomFieldValueStr.builder()
                                                                                        .build())))
                                                                                .build()))
                                                                        .badges(List.of(
                                                                            Badge.builder()
                                                                                .key("deployment_name_new_hire")
                                                                                .displayName("New hire")
                                                                                .iconConfig(IconConfig.builder()
                                                                                    .color("#343CED")
                                                                                    .key("person_icon")
                                                                                    .iconType(IconType.GLYPH)
                                                                                    .name("user")
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build())
                                                                .owner(Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .metadata(PersonMetadata.builder()
                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                        .title("Actor")
                                                                        .department("Movies")
                                                                        .email("george@example.com")
                                                                        .location("Hollywood, CA")
                                                                        .phone("6505551234")
                                                                        .photoUrl("https://example.com/george.jpg")
                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                        .datasourceProfile(List.of(
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build()))
                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                            .suggestions(List.of(
                                                                                QuerySuggestion.builder()
                                                                                    .query("app:github type:pull author:mortimer")
                                                                                    .label("Mortimer's PRs")
                                                                                    .datasource("github")
                                                                                    .build()))
                                                                            .build())
                                                                        .inviteInfo(InviteInfo.builder()
                                                                            .invites(List.of(
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build()))
                                                                            .build())
                                                                        .badges(List.of(
                                                                            Badge.builder()
                                                                                .key("deployment_name_new_hire")
                                                                                .displayName("New hire")
                                                                                .iconConfig(IconConfig.builder()
                                                                                    .color("#343CED")
                                                                                    .key("person_icon")
                                                                                    .iconType(IconType.GLYPH)
                                                                                    .name("user")
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build())
                                                                .mentionedPeople(List.of(
                                                                    Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .build()))
                                                                .components(List.of(
                                                                    "Backend",
                                                                    "Networking"))
                                                                .status("[\"Done\"]")
                                                                .pins(List.of(
                                                                    PinDocument.builder()
                                                                        .documentId("<id>")
                                                                        .audienceFilters(List.of(
                                                                            FacetFilter.builder()
                                                                                .fieldName("type")
                                                                                .values(List.of(
                                                                                    FacetFilterValue.builder()
                                                                                        .value("Spreadsheet")
                                                                                        .relationType(RelationType.EQUALS)
                                                                                        .build(),
                                                                                    FacetFilterValue.builder()
                                                                                        .value("Presentation")
                                                                                        .relationType(RelationType.EQUALS)
                                                                                        .build()))
                                                                                .build()))
                                                                        .attribution(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .updatedBy(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .build(),
                                                                    PinDocument.builder()
                                                                        .documentId("<id>")
                                                                        .audienceFilters(List.of(
                                                                            FacetFilter.builder()
                                                                                .fieldName("type")
                                                                                .values(List.of(
                                                                                    FacetFilterValue.builder()
                                                                                        .value("Spreadsheet")
                                                                                        .relationType(RelationType.EQUALS)
                                                                                        .build(),
                                                                                    FacetFilterValue.builder()
                                                                                        .value("Presentation")
                                                                                        .relationType(RelationType.EQUALS)
                                                                                        .build()))
                                                                                .build()))
                                                                        .attribution(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .updatedBy(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .build()))
                                                                .assignedTo(Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .metadata(PersonMetadata.builder()
                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                        .title("Actor")
                                                                        .department("Movies")
                                                                        .email("george@example.com")
                                                                        .location("Hollywood, CA")
                                                                        .phone("6505551234")
                                                                        .photoUrl("https://example.com/george.jpg")
                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                        .datasourceProfile(List.of(
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build()))
                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                            .suggestions(List.of(
                                                                                QuerySuggestion.builder()
                                                                                    .query("app:github type:pull author:mortimer")
                                                                                    .label("Mortimer's PRs")
                                                                                    .datasource("github")
                                                                                    .build()))
                                                                            .build())
                                                                        .inviteInfo(InviteInfo.builder()
                                                                            .invites(List.of(
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build()))
                                                                            .build())
                                                                        .badges(List.of(
                                                                            Badge.builder()
                                                                                .key("deployment_name_new_hire")
                                                                                .displayName("New hire")
                                                                                .iconConfig(IconConfig.builder()
                                                                                    .color("#343CED")
                                                                                    .key("person_icon")
                                                                                    .iconType(IconType.GLYPH)
                                                                                    .name("user")
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build())
                                                                .updatedBy(Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .metadata(PersonMetadata.builder()
                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                        .title("Actor")
                                                                        .department("Movies")
                                                                        .email("george@example.com")
                                                                        .location("Hollywood, CA")
                                                                        .phone("6505551234")
                                                                        .photoUrl("https://example.com/george.jpg")
                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                        .datasourceProfile(List.of(
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build()))
                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                            .suggestions(List.of(
                                                                                QuerySuggestion.builder()
                                                                                    .query("app:github type:pull author:mortimer")
                                                                                    .label("Mortimer's PRs")
                                                                                    .datasource("github")
                                                                                    .build()))
                                                                            .build())
                                                                        .inviteInfo(InviteInfo.builder()
                                                                            .invites(List.of(
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build()))
                                                                            .build())
                                                                        .badges(List.of(
                                                                            Badge.builder()
                                                                                .key("deployment_name_new_hire")
                                                                                .displayName("New hire")
                                                                                .iconConfig(IconConfig.builder()
                                                                                    .color("#343CED")
                                                                                    .key("person_icon")
                                                                                    .iconType(IconType.GLYPH)
                                                                                    .name("user")
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build())
                                                                .collections(List.of(
                                                                    Collection.builder()
                                                                        .name("<value>")
                                                                        .description("perfectly flustered dimly")
                                                                        .id(83242L)
                                                                        .addedRoles(List.of(
                                                                            UserRoleSpecification.builder()
                                                                                .role(UserRole.ANSWER_MODERATOR)
                                                                                .person(Person.builder()
                                                                                    .name("George Clooney")
                                                                                    .obfuscatedId("abc123")
                                                                                    .metadata(PersonMetadata.builder()
                                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                                        .title("Actor")
                                                                                        .department("Movies")
                                                                                        .email("george@example.com")
                                                                                        .location("Hollywood, CA")
                                                                                        .phone("6505551234")
                                                                                        .photoUrl("https://example.com/george.jpg")
                                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                                        .datasourceProfile(List.of(
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build(),
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build()))
                                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                                            .suggestions(List.of(
                                                                                                QuerySuggestion.builder()
                                                                                                    .query("app:github type:pull author:mortimer")
                                                                                                    .label("Mortimer's PRs")
                                                                                                    .datasource("github")
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .inviteInfo(InviteInfo.builder()
                                                                                            .invites(List.of(
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .badges(List.of(
                                                                                            Badge.builder()
                                                                                                .key("deployment_name_new_hire")
                                                                                                .displayName("New hire")
                                                                                                .iconConfig(IconConfig.builder()
                                                                                                    .color("#343CED")
                                                                                                    .key("person_icon")
                                                                                                    .iconType(IconType.GLYPH)
                                                                                                    .name("user")
                                                                                                    .build())
                                                                                                .build()))
                                                                                        .build())
                                                                                    .build())
                                                                                .build(),
                                                                            UserRoleSpecification.builder()
                                                                                .role(UserRole.ANSWER_MODERATOR)
                                                                                .person(Person.builder()
                                                                                    .name("George Clooney")
                                                                                    .obfuscatedId("abc123")
                                                                                    .metadata(PersonMetadata.builder()
                                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                                        .title("Actor")
                                                                                        .department("Movies")
                                                                                        .email("george@example.com")
                                                                                        .location("Hollywood, CA")
                                                                                        .phone("6505551234")
                                                                                        .photoUrl("https://example.com/george.jpg")
                                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                                        .datasourceProfile(List.of(
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build(),
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build()))
                                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                                            .suggestions(List.of(
                                                                                                QuerySuggestion.builder()
                                                                                                    .query("app:github type:pull author:mortimer")
                                                                                                    .label("Mortimer's PRs")
                                                                                                    .datasource("github")
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .inviteInfo(InviteInfo.builder()
                                                                                            .invites(List.of(
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .badges(List.of(
                                                                                            Badge.builder()
                                                                                                .key("deployment_name_new_hire")
                                                                                                .displayName("New hire")
                                                                                                .iconConfig(IconConfig.builder()
                                                                                                    .color("#343CED")
                                                                                                    .key("person_icon")
                                                                                                    .iconType(IconType.GLYPH)
                                                                                                    .name("user")
                                                                                                    .build())
                                                                                                .build()))
                                                                                        .build())
                                                                                    .build())
                                                                                .build(),
                                                                            UserRoleSpecification.builder()
                                                                                .role(UserRole.ANSWER_MODERATOR)
                                                                                .person(Person.builder()
                                                                                    .name("George Clooney")
                                                                                    .obfuscatedId("abc123")
                                                                                    .metadata(PersonMetadata.builder()
                                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                                        .title("Actor")
                                                                                        .department("Movies")
                                                                                        .email("george@example.com")
                                                                                        .location("Hollywood, CA")
                                                                                        .phone("6505551234")
                                                                                        .photoUrl("https://example.com/george.jpg")
                                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                                        .datasourceProfile(List.of(
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build(),
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build()))
                                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                                            .suggestions(List.of(
                                                                                                QuerySuggestion.builder()
                                                                                                    .query("app:github type:pull author:mortimer")
                                                                                                    .label("Mortimer's PRs")
                                                                                                    .datasource("github")
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .inviteInfo(InviteInfo.builder()
                                                                                            .invites(List.of(
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .badges(List.of(
                                                                                            Badge.builder()
                                                                                                .key("deployment_name_new_hire")
                                                                                                .displayName("New hire")
                                                                                                .iconConfig(IconConfig.builder()
                                                                                                    .color("#343CED")
                                                                                                    .key("person_icon")
                                                                                                    .iconType(IconType.GLYPH)
                                                                                                    .name("user")
                                                                                                    .build())
                                                                                                .build()))
                                                                                        .build())
                                                                                    .build())
                                                                                .build()))
                                                                        .removedRoles(List.of(
                                                                            UserRoleSpecification.builder()
                                                                                .role(UserRole.VERIFIER)
                                                                                .person(Person.builder()
                                                                                    .name("George Clooney")
                                                                                    .obfuscatedId("abc123")
                                                                                    .metadata(PersonMetadata.builder()
                                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                                        .title("Actor")
                                                                                        .department("Movies")
                                                                                        .email("george@example.com")
                                                                                        .location("Hollywood, CA")
                                                                                        .phone("6505551234")
                                                                                        .photoUrl("https://example.com/george.jpg")
                                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                                        .datasourceProfile(List.of(
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build(),
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build(),
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build()))
                                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                                            .suggestions(List.of(
                                                                                                QuerySuggestion.builder()
                                                                                                    .query("app:github type:pull author:mortimer")
                                                                                                    .label("Mortimer's PRs")
                                                                                                    .datasource("github")
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .inviteInfo(InviteInfo.builder()
                                                                                            .invites(List.of(
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .badges(List.of(
                                                                                            Badge.builder()
                                                                                                .key("deployment_name_new_hire")
                                                                                                .displayName("New hire")
                                                                                                .iconConfig(IconConfig.builder()
                                                                                                    .color("#343CED")
                                                                                                    .key("person_icon")
                                                                                                    .iconType(IconType.GLYPH)
                                                                                                    .name("user")
                                                                                                    .build())
                                                                                                .build()))
                                                                                        .build())
                                                                                    .build())
                                                                                .build()))
                                                                        .audienceFilters(List.of(
                                                                            FacetFilter.builder()
                                                                                .fieldName("type")
                                                                                .values(List.of(
                                                                                    FacetFilterValue.builder()
                                                                                        .value("Spreadsheet")
                                                                                        .relationType(RelationType.EQUALS)
                                                                                        .build(),
                                                                                    FacetFilterValue.builder()
                                                                                        .value("Presentation")
                                                                                        .relationType(RelationType.EQUALS)
                                                                                        .build()))
                                                                                .build()))
                                                                        .creator(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .updatedBy(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .items(List.of(
                                                                            CollectionItem.builder()
                                                                                .collectionId(420359L)
                                                                                .itemType(CollectionItemItemType.COLLECTION)
                                                                                .createdBy(Person.builder()
                                                                                    .name("George Clooney")
                                                                                    .obfuscatedId("abc123")
                                                                                    .metadata(PersonMetadata.builder()
                                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                                        .title("Actor")
                                                                                        .department("Movies")
                                                                                        .email("george@example.com")
                                                                                        .location("Hollywood, CA")
                                                                                        .phone("6505551234")
                                                                                        .photoUrl("https://example.com/george.jpg")
                                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                                        .datasourceProfile(List.of(
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build(),
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build(),
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build()))
                                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                                            .suggestions(List.of(
                                                                                                QuerySuggestion.builder()
                                                                                                    .query("app:github type:pull author:mortimer")
                                                                                                    .label("Mortimer's PRs")
                                                                                                    .datasource("github")
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .inviteInfo(InviteInfo.builder()
                                                                                            .invites(List.of(
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .badges(List.of(
                                                                                            Badge.builder()
                                                                                                .key("deployment_name_new_hire")
                                                                                                .displayName("New hire")
                                                                                                .iconConfig(IconConfig.builder()
                                                                                                    .color("#343CED")
                                                                                                    .key("person_icon")
                                                                                                    .iconType(IconType.GLYPH)
                                                                                                    .name("user")
                                                                                                    .build())
                                                                                                .build()))
                                                                                        .build())
                                                                                    .build())
                                                                                .shortcut(Shortcut.builder()
                                                                                    .inputAlias("<value>")
                                                                                    .createdBy(Person.builder()
                                                                                        .name("George Clooney")
                                                                                        .obfuscatedId("abc123")
                                                                                        .metadata(PersonMetadata.builder()
                                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                                            .title("Actor")
                                                                                            .department("Movies")
                                                                                            .email("george@example.com")
                                                                                            .location("Hollywood, CA")
                                                                                            .phone("6505551234")
                                                                                            .photoUrl("https://example.com/george.jpg")
                                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                                            .datasourceProfile(List.of(
                                                                                                DatasourceProfile.builder()
                                                                                                    .datasource("github")
                                                                                                    .handle("<value>")
                                                                                                    .build(),
                                                                                                DatasourceProfile.builder()
                                                                                                    .datasource("github")
                                                                                                    .handle("<value>")
                                                                                                    .build(),
                                                                                                DatasourceProfile.builder()
                                                                                                    .datasource("github")
                                                                                                    .handle("<value>")
                                                                                                    .build()))
                                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                                .suggestions(List.of(
                                                                                                    QuerySuggestion.builder()
                                                                                                        .query("app:github type:pull author:mortimer")
                                                                                                        .label("Mortimer's PRs")
                                                                                                        .datasource("github")
                                                                                                        .build()))
                                                                                                .build())
                                                                                            .inviteInfo(InviteInfo.builder()
                                                                                                .invites(List.of(
                                                                                                    ChannelInviteInfo.builder()
                                                                                                        .build(),
                                                                                                    ChannelInviteInfo.builder()
                                                                                                        .build(),
                                                                                                    ChannelInviteInfo.builder()
                                                                                                        .build()))
                                                                                                .build())
                                                                                            .badges(List.of(
                                                                                                Badge.builder()
                                                                                                    .key("deployment_name_new_hire")
                                                                                                    .displayName("New hire")
                                                                                                    .iconConfig(IconConfig.builder()
                                                                                                        .color("#343CED")
                                                                                                        .key("person_icon")
                                                                                                        .iconType(IconType.GLYPH)
                                                                                                        .name("user")
                                                                                                        .build())
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .build())
                                                                                    .updatedBy(Person.builder()
                                                                                        .name("George Clooney")
                                                                                        .obfuscatedId("abc123")
                                                                                        .metadata(PersonMetadata.builder()
                                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                                            .title("Actor")
                                                                                            .department("Movies")
                                                                                            .email("george@example.com")
                                                                                            .location("Hollywood, CA")
                                                                                            .phone("6505551234")
                                                                                            .photoUrl("https://example.com/george.jpg")
                                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                                            .datasourceProfile(List.of(
                                                                                                DatasourceProfile.builder()
                                                                                                    .datasource("github")
                                                                                                    .handle("<value>")
                                                                                                    .build(),
                                                                                                DatasourceProfile.builder()
                                                                                                    .datasource("github")
                                                                                                    .handle("<value>")
                                                                                                    .build()))
                                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                                .suggestions(List.of(
                                                                                                    QuerySuggestion.builder()
                                                                                                        .query("app:github type:pull author:mortimer")
                                                                                                        .label("Mortimer's PRs")
                                                                                                        .datasource("github")
                                                                                                        .build()))
                                                                                                .build())
                                                                                            .inviteInfo(InviteInfo.builder()
                                                                                                .invites(List.of(
                                                                                                    ChannelInviteInfo.builder()
                                                                                                        .build(),
                                                                                                    ChannelInviteInfo.builder()
                                                                                                        .build(),
                                                                                                    ChannelInviteInfo.builder()
                                                                                                        .build()))
                                                                                                .build())
                                                                                            .badges(List.of(
                                                                                                Badge.builder()
                                                                                                    .key("deployment_name_new_hire")
                                                                                                    .displayName("New hire")
                                                                                                    .iconConfig(IconConfig.builder()
                                                                                                        .color("#343CED")
                                                                                                        .key("person_icon")
                                                                                                        .iconType(IconType.GLYPH)
                                                                                                        .name("user")
                                                                                                        .build())
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .build())
                                                                                    .roles(List.of(
                                                                                        UserRoleSpecification.builder()
                                                                                            .role(UserRole.ANSWER_MODERATOR)
                                                                                            .person(Person.builder()
                                                                                                .name("George Clooney")
                                                                                                .obfuscatedId("abc123")
                                                                                                .metadata(PersonMetadata.builder()
                                                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                                                    .title("Actor")
                                                                                                    .department("Movies")
                                                                                                    .email("george@example.com")
                                                                                                    .location("Hollywood, CA")
                                                                                                    .phone("6505551234")
                                                                                                    .photoUrl("https://example.com/george.jpg")
                                                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                                                    .datasourceProfile(List.of(
                                                                                                        DatasourceProfile.builder()
                                                                                                            .datasource("github")
                                                                                                            .handle("<value>")
                                                                                                            .build(),
                                                                                                        DatasourceProfile.builder()
                                                                                                            .datasource("github")
                                                                                                            .handle("<value>")
                                                                                                            .build()))
                                                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                                                        .suggestions(List.of(
                                                                                                            QuerySuggestion.builder()
                                                                                                                .query("app:github type:pull author:mortimer")
                                                                                                                .label("Mortimer's PRs")
                                                                                                                .datasource("github")
                                                                                                                .build()))
                                                                                                        .build())
                                                                                                    .inviteInfo(InviteInfo.builder()
                                                                                                        .invites(List.of(
                                                                                                            ChannelInviteInfo.builder()
                                                                                                                .build(),
                                                                                                            ChannelInviteInfo.builder()
                                                                                                                .build(),
                                                                                                            ChannelInviteInfo.builder()
                                                                                                                .build()))
                                                                                                        .build())
                                                                                                    .badges(List.of(
                                                                                                        Badge.builder()
                                                                                                            .key("deployment_name_new_hire")
                                                                                                            .displayName("New hire")
                                                                                                            .iconConfig(IconConfig.builder()
                                                                                                                .color("#343CED")
                                                                                                                .key("person_icon")
                                                                                                                .iconType(IconType.GLYPH)
                                                                                                                .name("user")
                                                                                                                .build())
                                                                                                            .build()))
                                                                                                    .build())
                                                                                                .build())
                                                                                            .build(),
                                                                                        UserRoleSpecification.builder()
                                                                                            .role(UserRole.ANSWER_MODERATOR)
                                                                                            .person(Person.builder()
                                                                                                .name("George Clooney")
                                                                                                .obfuscatedId("abc123")
                                                                                                .metadata(PersonMetadata.builder()
                                                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                                                    .title("Actor")
                                                                                                    .department("Movies")
                                                                                                    .email("george@example.com")
                                                                                                    .location("Hollywood, CA")
                                                                                                    .phone("6505551234")
                                                                                                    .photoUrl("https://example.com/george.jpg")
                                                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                                                    .datasourceProfile(List.of(
                                                                                                        DatasourceProfile.builder()
                                                                                                            .datasource("github")
                                                                                                            .handle("<value>")
                                                                                                            .build(),
                                                                                                        DatasourceProfile.builder()
                                                                                                            .datasource("github")
                                                                                                            .handle("<value>")
                                                                                                            .build()))
                                                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                                                        .suggestions(List.of(
                                                                                                            QuerySuggestion.builder()
                                                                                                                .query("app:github type:pull author:mortimer")
                                                                                                                .label("Mortimer's PRs")
                                                                                                                .datasource("github")
                                                                                                                .build()))
                                                                                                        .build())
                                                                                                    .inviteInfo(InviteInfo.builder()
                                                                                                        .invites(List.of(
                                                                                                            ChannelInviteInfo.builder()
                                                                                                                .build(),
                                                                                                            ChannelInviteInfo.builder()
                                                                                                                .build(),
                                                                                                            ChannelInviteInfo.builder()
                                                                                                                .build()))
                                                                                                        .build())
                                                                                                    .badges(List.of(
                                                                                                        Badge.builder()
                                                                                                            .key("deployment_name_new_hire")
                                                                                                            .displayName("New hire")
                                                                                                            .iconConfig(IconConfig.builder()
                                                                                                                .color("#343CED")
                                                                                                                .key("person_icon")
                                                                                                                .iconType(IconType.GLYPH)
                                                                                                                .name("user")
                                                                                                                .build())
                                                                                                            .build()))
                                                                                                    .build())
                                                                                                .build())
                                                                                            .build()))
                                                                                    .build())
                                                                                .build(),
                                                                            CollectionItem.builder()
                                                                                .collectionId(420359L)
                                                                                .itemType(CollectionItemItemType.COLLECTION)
                                                                                .createdBy(Person.builder()
                                                                                    .name("George Clooney")
                                                                                    .obfuscatedId("abc123")
                                                                                    .metadata(PersonMetadata.builder()
                                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                                        .title("Actor")
                                                                                        .department("Movies")
                                                                                        .email("george@example.com")
                                                                                        .location("Hollywood, CA")
                                                                                        .phone("6505551234")
                                                                                        .photoUrl("https://example.com/george.jpg")
                                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                                        .datasourceProfile(List.of(
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build(),
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build(),
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build()))
                                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                                            .suggestions(List.of(
                                                                                                QuerySuggestion.builder()
                                                                                                    .query("app:github type:pull author:mortimer")
                                                                                                    .label("Mortimer's PRs")
                                                                                                    .datasource("github")
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .inviteInfo(InviteInfo.builder()
                                                                                            .invites(List.of(
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .badges(List.of(
                                                                                            Badge.builder()
                                                                                                .key("deployment_name_new_hire")
                                                                                                .displayName("New hire")
                                                                                                .iconConfig(IconConfig.builder()
                                                                                                    .color("#343CED")
                                                                                                    .key("person_icon")
                                                                                                    .iconType(IconType.GLYPH)
                                                                                                    .name("user")
                                                                                                    .build())
                                                                                                .build()))
                                                                                        .build())
                                                                                    .build())
                                                                                .shortcut(Shortcut.builder()
                                                                                    .inputAlias("<value>")
                                                                                    .createdBy(Person.builder()
                                                                                        .name("George Clooney")
                                                                                        .obfuscatedId("abc123")
                                                                                        .metadata(PersonMetadata.builder()
                                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                                            .title("Actor")
                                                                                            .department("Movies")
                                                                                            .email("george@example.com")
                                                                                            .location("Hollywood, CA")
                                                                                            .phone("6505551234")
                                                                                            .photoUrl("https://example.com/george.jpg")
                                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                                            .datasourceProfile(List.of(
                                                                                                DatasourceProfile.builder()
                                                                                                    .datasource("github")
                                                                                                    .handle("<value>")
                                                                                                    .build(),
                                                                                                DatasourceProfile.builder()
                                                                                                    .datasource("github")
                                                                                                    .handle("<value>")
                                                                                                    .build(),
                                                                                                DatasourceProfile.builder()
                                                                                                    .datasource("github")
                                                                                                    .handle("<value>")
                                                                                                    .build()))
                                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                                .suggestions(List.of(
                                                                                                    QuerySuggestion.builder()
                                                                                                        .query("app:github type:pull author:mortimer")
                                                                                                        .label("Mortimer's PRs")
                                                                                                        .datasource("github")
                                                                                                        .build()))
                                                                                                .build())
                                                                                            .inviteInfo(InviteInfo.builder()
                                                                                                .invites(List.of(
                                                                                                    ChannelInviteInfo.builder()
                                                                                                        .build(),
                                                                                                    ChannelInviteInfo.builder()
                                                                                                        .build(),
                                                                                                    ChannelInviteInfo.builder()
                                                                                                        .build()))
                                                                                                .build())
                                                                                            .badges(List.of(
                                                                                                Badge.builder()
                                                                                                    .key("deployment_name_new_hire")
                                                                                                    .displayName("New hire")
                                                                                                    .iconConfig(IconConfig.builder()
                                                                                                        .color("#343CED")
                                                                                                        .key("person_icon")
                                                                                                        .iconType(IconType.GLYPH)
                                                                                                        .name("user")
                                                                                                        .build())
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .build())
                                                                                    .updatedBy(Person.builder()
                                                                                        .name("George Clooney")
                                                                                        .obfuscatedId("abc123")
                                                                                        .metadata(PersonMetadata.builder()
                                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                                            .title("Actor")
                                                                                            .department("Movies")
                                                                                            .email("george@example.com")
                                                                                            .location("Hollywood, CA")
                                                                                            .phone("6505551234")
                                                                                            .photoUrl("https://example.com/george.jpg")
                                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                                            .datasourceProfile(List.of(
                                                                                                DatasourceProfile.builder()
                                                                                                    .datasource("github")
                                                                                                    .handle("<value>")
                                                                                                    .build(),
                                                                                                DatasourceProfile.builder()
                                                                                                    .datasource("github")
                                                                                                    .handle("<value>")
                                                                                                    .build()))
                                                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                                                .suggestions(List.of(
                                                                                                    QuerySuggestion.builder()
                                                                                                        .query("app:github type:pull author:mortimer")
                                                                                                        .label("Mortimer's PRs")
                                                                                                        .datasource("github")
                                                                                                        .build()))
                                                                                                .build())
                                                                                            .inviteInfo(InviteInfo.builder()
                                                                                                .invites(List.of(
                                                                                                    ChannelInviteInfo.builder()
                                                                                                        .build(),
                                                                                                    ChannelInviteInfo.builder()
                                                                                                        .build(),
                                                                                                    ChannelInviteInfo.builder()
                                                                                                        .build()))
                                                                                                .build())
                                                                                            .badges(List.of(
                                                                                                Badge.builder()
                                                                                                    .key("deployment_name_new_hire")
                                                                                                    .displayName("New hire")
                                                                                                    .iconConfig(IconConfig.builder()
                                                                                                        .color("#343CED")
                                                                                                        .key("person_icon")
                                                                                                        .iconType(IconType.GLYPH)
                                                                                                        .name("user")
                                                                                                        .build())
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .build())
                                                                                    .roles(List.of(
                                                                                        UserRoleSpecification.builder()
                                                                                            .role(UserRole.ANSWER_MODERATOR)
                                                                                            .person(Person.builder()
                                                                                                .name("George Clooney")
                                                                                                .obfuscatedId("abc123")
                                                                                                .metadata(PersonMetadata.builder()
                                                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                                                    .title("Actor")
                                                                                                    .department("Movies")
                                                                                                    .email("george@example.com")
                                                                                                    .location("Hollywood, CA")
                                                                                                    .phone("6505551234")
                                                                                                    .photoUrl("https://example.com/george.jpg")
                                                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                                                    .datasourceProfile(List.of(
                                                                                                        DatasourceProfile.builder()
                                                                                                            .datasource("github")
                                                                                                            .handle("<value>")
                                                                                                            .build(),
                                                                                                        DatasourceProfile.builder()
                                                                                                            .datasource("github")
                                                                                                            .handle("<value>")
                                                                                                            .build()))
                                                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                                                        .suggestions(List.of(
                                                                                                            QuerySuggestion.builder()
                                                                                                                .query("app:github type:pull author:mortimer")
                                                                                                                .label("Mortimer's PRs")
                                                                                                                .datasource("github")
                                                                                                                .build()))
                                                                                                        .build())
                                                                                                    .inviteInfo(InviteInfo.builder()
                                                                                                        .invites(List.of(
                                                                                                            ChannelInviteInfo.builder()
                                                                                                                .build(),
                                                                                                            ChannelInviteInfo.builder()
                                                                                                                .build(),
                                                                                                            ChannelInviteInfo.builder()
                                                                                                                .build()))
                                                                                                        .build())
                                                                                                    .badges(List.of(
                                                                                                        Badge.builder()
                                                                                                            .key("deployment_name_new_hire")
                                                                                                            .displayName("New hire")
                                                                                                            .iconConfig(IconConfig.builder()
                                                                                                                .color("#343CED")
                                                                                                                .key("person_icon")
                                                                                                                .iconType(IconType.GLYPH)
                                                                                                                .name("user")
                                                                                                                .build())
                                                                                                            .build()))
                                                                                                    .build())
                                                                                                .build())
                                                                                            .build(),
                                                                                        UserRoleSpecification.builder()
                                                                                            .role(UserRole.ANSWER_MODERATOR)
                                                                                            .person(Person.builder()
                                                                                                .name("George Clooney")
                                                                                                .obfuscatedId("abc123")
                                                                                                .metadata(PersonMetadata.builder()
                                                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                                                    .title("Actor")
                                                                                                    .department("Movies")
                                                                                                    .email("george@example.com")
                                                                                                    .location("Hollywood, CA")
                                                                                                    .phone("6505551234")
                                                                                                    .photoUrl("https://example.com/george.jpg")
                                                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                                                    .datasourceProfile(List.of(
                                                                                                        DatasourceProfile.builder()
                                                                                                            .datasource("github")
                                                                                                            .handle("<value>")
                                                                                                            .build(),
                                                                                                        DatasourceProfile.builder()
                                                                                                            .datasource("github")
                                                                                                            .handle("<value>")
                                                                                                            .build()))
                                                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                                                        .suggestions(List.of(
                                                                                                            QuerySuggestion.builder()
                                                                                                                .query("app:github type:pull author:mortimer")
                                                                                                                .label("Mortimer's PRs")
                                                                                                                .datasource("github")
                                                                                                                .build()))
                                                                                                        .build())
                                                                                                    .inviteInfo(InviteInfo.builder()
                                                                                                        .invites(List.of(
                                                                                                            ChannelInviteInfo.builder()
                                                                                                                .build(),
                                                                                                            ChannelInviteInfo.builder()
                                                                                                                .build(),
                                                                                                            ChannelInviteInfo.builder()
                                                                                                                .build()))
                                                                                                        .build())
                                                                                                    .badges(List.of(
                                                                                                        Badge.builder()
                                                                                                            .key("deployment_name_new_hire")
                                                                                                            .displayName("New hire")
                                                                                                            .iconConfig(IconConfig.builder()
                                                                                                                .color("#343CED")
                                                                                                                .key("person_icon")
                                                                                                                .iconType(IconType.GLYPH)
                                                                                                                .name("user")
                                                                                                                .build())
                                                                                                            .build()))
                                                                                                    .build())
                                                                                                .build())
                                                                                            .build()))
                                                                                    .build())
                                                                                .build()))
                                                                        .build()))
                                                                .interactions(DocumentInteractions.builder()
                                                                    .reacts(List.of(
                                                                        Reaction.builder()
                                                                            .reactors(List.of(
                                                                                Person.builder()
                                                                                    .name("George Clooney")
                                                                                    .obfuscatedId("abc123")
                                                                                    .build()))
                                                                            .build(),
                                                                        Reaction.builder()
                                                                            .reactors(List.of(
                                                                                Person.builder()
                                                                                    .name("George Clooney")
                                                                                    .obfuscatedId("abc123")
                                                                                    .build()))
                                                                            .build()))
                                                                    .shares(List.of(
                                                                        Share.builder()
                                                                            .numDaysAgo(582012L)
                                                                            .sharer(Person.builder()
                                                                                .name("George Clooney")
                                                                                .obfuscatedId("abc123")
                                                                                .metadata(PersonMetadata.builder()
                                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                                    .title("Actor")
                                                                                    .department("Movies")
                                                                                    .email("george@example.com")
                                                                                    .location("Hollywood, CA")
                                                                                    .phone("6505551234")
                                                                                    .photoUrl("https://example.com/george.jpg")
                                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                                    .datasourceProfile(List.of(
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build()))
                                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                                        .suggestions(List.of(
                                                                                            QuerySuggestion.builder()
                                                                                                .query("app:github type:pull author:mortimer")
                                                                                                .label("Mortimer's PRs")
                                                                                                .datasource("github")
                                                                                                .build()))
                                                                                        .build())
                                                                                    .inviteInfo(InviteInfo.builder()
                                                                                        .invites(List.of(
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build()))
                                                                                        .build())
                                                                                    .badges(List.of(
                                                                                        Badge.builder()
                                                                                            .key("deployment_name_new_hire")
                                                                                            .displayName("New hire")
                                                                                            .iconConfig(IconConfig.builder()
                                                                                                .color("#343CED")
                                                                                                .key("person_icon")
                                                                                                .iconType(IconType.GLYPH)
                                                                                                .name("user")
                                                                                                .build())
                                                                                            .build()))
                                                                                    .build())
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .verification(Verification.builder()
                                                                    .state(State.DEPRECATED)
                                                                    .metadata(VerificationMetadata.builder()
                                                                        .lastVerifier(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .reminders(List.of(
                                                                            Reminder.builder()
                                                                                .assignee(Person.builder()
                                                                                    .name("George Clooney")
                                                                                    .obfuscatedId("abc123")
                                                                                    .metadata(PersonMetadata.builder()
                                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                                        .title("Actor")
                                                                                        .department("Movies")
                                                                                        .email("george@example.com")
                                                                                        .location("Hollywood, CA")
                                                                                        .phone("6505551234")
                                                                                        .photoUrl("https://example.com/george.jpg")
                                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                                        .datasourceProfile(List.of(
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build(),
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build(),
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build()))
                                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                                            .suggestions(List.of(
                                                                                                QuerySuggestion.builder()
                                                                                                    .query("app:github type:pull author:mortimer")
                                                                                                    .label("Mortimer's PRs")
                                                                                                    .datasource("github")
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .inviteInfo(InviteInfo.builder()
                                                                                            .invites(List.of(
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .badges(List.of(
                                                                                            Badge.builder()
                                                                                                .key("deployment_name_new_hire")
                                                                                                .displayName("New hire")
                                                                                                .iconConfig(IconConfig.builder()
                                                                                                    .color("#343CED")
                                                                                                    .key("person_icon")
                                                                                                    .iconType(IconType.GLYPH)
                                                                                                    .name("user")
                                                                                                    .build())
                                                                                                .build()))
                                                                                        .build())
                                                                                    .build())
                                                                                .remindAt(785622L)
                                                                                .requestor(Person.builder()
                                                                                    .name("George Clooney")
                                                                                    .obfuscatedId("abc123")
                                                                                    .metadata(PersonMetadata.builder()
                                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                                        .title("Actor")
                                                                                        .department("Movies")
                                                                                        .email("george@example.com")
                                                                                        .location("Hollywood, CA")
                                                                                        .phone("6505551234")
                                                                                        .photoUrl("https://example.com/george.jpg")
                                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                                        .datasourceProfile(List.of(
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build(),
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build()))
                                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                                            .suggestions(List.of(
                                                                                                QuerySuggestion.builder()
                                                                                                    .query("app:github type:pull author:mortimer")
                                                                                                    .label("Mortimer's PRs")
                                                                                                    .datasource("github")
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .inviteInfo(InviteInfo.builder()
                                                                                            .invites(List.of(
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .badges(List.of(
                                                                                            Badge.builder()
                                                                                                .key("deployment_name_new_hire")
                                                                                                .displayName("New hire")
                                                                                                .iconConfig(IconConfig.builder()
                                                                                                    .color("#343CED")
                                                                                                    .key("person_icon")
                                                                                                    .iconType(IconType.GLYPH)
                                                                                                    .name("user")
                                                                                                    .build())
                                                                                                .build()))
                                                                                        .build())
                                                                                    .build())
                                                                                .build(),
                                                                            Reminder.builder()
                                                                                .assignee(Person.builder()
                                                                                    .name("George Clooney")
                                                                                    .obfuscatedId("abc123")
                                                                                    .metadata(PersonMetadata.builder()
                                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                                        .title("Actor")
                                                                                        .department("Movies")
                                                                                        .email("george@example.com")
                                                                                        .location("Hollywood, CA")
                                                                                        .phone("6505551234")
                                                                                        .photoUrl("https://example.com/george.jpg")
                                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                                        .datasourceProfile(List.of(
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build(),
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build(),
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build()))
                                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                                            .suggestions(List.of(
                                                                                                QuerySuggestion.builder()
                                                                                                    .query("app:github type:pull author:mortimer")
                                                                                                    .label("Mortimer's PRs")
                                                                                                    .datasource("github")
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .inviteInfo(InviteInfo.builder()
                                                                                            .invites(List.of(
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .badges(List.of(
                                                                                            Badge.builder()
                                                                                                .key("deployment_name_new_hire")
                                                                                                .displayName("New hire")
                                                                                                .iconConfig(IconConfig.builder()
                                                                                                    .color("#343CED")
                                                                                                    .key("person_icon")
                                                                                                    .iconType(IconType.GLYPH)
                                                                                                    .name("user")
                                                                                                    .build())
                                                                                                .build()))
                                                                                        .build())
                                                                                    .build())
                                                                                .remindAt(785622L)
                                                                                .requestor(Person.builder()
                                                                                    .name("George Clooney")
                                                                                    .obfuscatedId("abc123")
                                                                                    .metadata(PersonMetadata.builder()
                                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                                        .title("Actor")
                                                                                        .department("Movies")
                                                                                        .email("george@example.com")
                                                                                        .location("Hollywood, CA")
                                                                                        .phone("6505551234")
                                                                                        .photoUrl("https://example.com/george.jpg")
                                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                                        .datasourceProfile(List.of(
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build(),
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build()))
                                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                                            .suggestions(List.of(
                                                                                                QuerySuggestion.builder()
                                                                                                    .query("app:github type:pull author:mortimer")
                                                                                                    .label("Mortimer's PRs")
                                                                                                    .datasource("github")
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .inviteInfo(InviteInfo.builder()
                                                                                            .invites(List.of(
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .badges(List.of(
                                                                                            Badge.builder()
                                                                                                .key("deployment_name_new_hire")
                                                                                                .displayName("New hire")
                                                                                                .iconConfig(IconConfig.builder()
                                                                                                    .color("#343CED")
                                                                                                    .key("person_icon")
                                                                                                    .iconType(IconType.GLYPH)
                                                                                                    .name("user")
                                                                                                    .build())
                                                                                                .build()))
                                                                                        .build())
                                                                                    .build())
                                                                                .build(),
                                                                            Reminder.builder()
                                                                                .assignee(Person.builder()
                                                                                    .name("George Clooney")
                                                                                    .obfuscatedId("abc123")
                                                                                    .metadata(PersonMetadata.builder()
                                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                                        .title("Actor")
                                                                                        .department("Movies")
                                                                                        .email("george@example.com")
                                                                                        .location("Hollywood, CA")
                                                                                        .phone("6505551234")
                                                                                        .photoUrl("https://example.com/george.jpg")
                                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                                        .datasourceProfile(List.of(
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build(),
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build(),
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build()))
                                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                                            .suggestions(List.of(
                                                                                                QuerySuggestion.builder()
                                                                                                    .query("app:github type:pull author:mortimer")
                                                                                                    .label("Mortimer's PRs")
                                                                                                    .datasource("github")
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .inviteInfo(InviteInfo.builder()
                                                                                            .invites(List.of(
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .badges(List.of(
                                                                                            Badge.builder()
                                                                                                .key("deployment_name_new_hire")
                                                                                                .displayName("New hire")
                                                                                                .iconConfig(IconConfig.builder()
                                                                                                    .color("#343CED")
                                                                                                    .key("person_icon")
                                                                                                    .iconType(IconType.GLYPH)
                                                                                                    .name("user")
                                                                                                    .build())
                                                                                                .build()))
                                                                                        .build())
                                                                                    .build())
                                                                                .remindAt(785622L)
                                                                                .requestor(Person.builder()
                                                                                    .name("George Clooney")
                                                                                    .obfuscatedId("abc123")
                                                                                    .metadata(PersonMetadata.builder()
                                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                                        .title("Actor")
                                                                                        .department("Movies")
                                                                                        .email("george@example.com")
                                                                                        .location("Hollywood, CA")
                                                                                        .phone("6505551234")
                                                                                        .photoUrl("https://example.com/george.jpg")
                                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                                        .datasourceProfile(List.of(
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build(),
                                                                                            DatasourceProfile.builder()
                                                                                                .datasource("github")
                                                                                                .handle("<value>")
                                                                                                .build()))
                                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                                            .suggestions(List.of(
                                                                                                QuerySuggestion.builder()
                                                                                                    .query("app:github type:pull author:mortimer")
                                                                                                    .label("Mortimer's PRs")
                                                                                                    .datasource("github")
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .inviteInfo(InviteInfo.builder()
                                                                                            .invites(List.of(
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build(),
                                                                                                ChannelInviteInfo.builder()
                                                                                                    .build()))
                                                                                            .build())
                                                                                        .badges(List.of(
                                                                                            Badge.builder()
                                                                                                .key("deployment_name_new_hire")
                                                                                                .displayName("New hire")
                                                                                                .iconConfig(IconConfig.builder()
                                                                                                    .color("#343CED")
                                                                                                    .key("person_icon")
                                                                                                    .iconType(IconType.GLYPH)
                                                                                                    .name("user")
                                                                                                    .build())
                                                                                                .build()))
                                                                                        .build())
                                                                                    .build())
                                                                                .build()))
                                                                        .lastReminder(Reminder.builder()
                                                                            .assignee(Person.builder()
                                                                                .name("George Clooney")
                                                                                .obfuscatedId("abc123")
                                                                                .metadata(PersonMetadata.builder()
                                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                                    .title("Actor")
                                                                                    .department("Movies")
                                                                                    .email("george@example.com")
                                                                                    .location("Hollywood, CA")
                                                                                    .phone("6505551234")
                                                                                    .photoUrl("https://example.com/george.jpg")
                                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                                    .datasourceProfile(List.of(
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build(),
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build(),
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build()))
                                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                                        .suggestions(List.of(
                                                                                            QuerySuggestion.builder()
                                                                                                .query("app:github type:pull author:mortimer")
                                                                                                .label("Mortimer's PRs")
                                                                                                .datasource("github")
                                                                                                .build()))
                                                                                        .build())
                                                                                    .inviteInfo(InviteInfo.builder()
                                                                                        .invites(List.of(
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build()))
                                                                                        .build())
                                                                                    .badges(List.of(
                                                                                        Badge.builder()
                                                                                            .key("deployment_name_new_hire")
                                                                                            .displayName("New hire")
                                                                                            .iconConfig(IconConfig.builder()
                                                                                                .color("#343CED")
                                                                                                .key("person_icon")
                                                                                                .iconType(IconType.GLYPH)
                                                                                                .name("user")
                                                                                                .build())
                                                                                            .build()))
                                                                                    .build())
                                                                                .build())
                                                                            .remindAt(269943L)
                                                                            .requestor(Person.builder()
                                                                                .name("George Clooney")
                                                                                .obfuscatedId("abc123")
                                                                                .metadata(PersonMetadata.builder()
                                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                                    .title("Actor")
                                                                                    .department("Movies")
                                                                                    .email("george@example.com")
                                                                                    .location("Hollywood, CA")
                                                                                    .phone("6505551234")
                                                                                    .photoUrl("https://example.com/george.jpg")
                                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                                    .datasourceProfile(List.of(
                                                                                        DatasourceProfile.builder()
                                                                                            .datasource("github")
                                                                                            .handle("<value>")
                                                                                            .build()))
                                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                                        .suggestions(List.of(
                                                                                            QuerySuggestion.builder()
                                                                                                .query("app:github type:pull author:mortimer")
                                                                                                .label("Mortimer's PRs")
                                                                                                .datasource("github")
                                                                                                .build()))
                                                                                        .build())
                                                                                    .inviteInfo(InviteInfo.builder()
                                                                                        .invites(List.of(
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build(),
                                                                                            ChannelInviteInfo.builder()
                                                                                                .build()))
                                                                                        .build())
                                                                                    .badges(List.of(
                                                                                        Badge.builder()
                                                                                            .key("deployment_name_new_hire")
                                                                                            .displayName("New hire")
                                                                                            .iconConfig(IconConfig.builder()
                                                                                                .color("#343CED")
                                                                                                .key("person_icon")
                                                                                                .iconType(IconType.GLYPH)
                                                                                                .name("user")
                                                                                                .build())
                                                                                            .build()))
                                                                                    .build())
                                                                                .build())
                                                                            .build())
                                                                        .candidateVerifiers(List.of(
                                                                            Person.builder()
                                                                                .name("George Clooney")
                                                                                .obfuscatedId("abc123")
                                                                                .build()))
                                                                        .build())
                                                                    .build())
                                                                .shortcuts(List.of(
                                                                    Shortcut.builder()
                                                                        .inputAlias("<value>")
                                                                        .createdBy(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .updatedBy(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .querySuggestions(QuerySuggestionList.builder()
                                                                                    .suggestions(List.of(
                                                                                        QuerySuggestion.builder()
                                                                                            .query("app:github type:pull author:mortimer")
                                                                                            .label("Mortimer's PRs")
                                                                                            .datasource("github")
                                                                                            .build()))
                                                                                    .build())
                                                                                .inviteInfo(InviteInfo.builder()
                                                                                    .invites(List.of(
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build(),
                                                                                        ChannelInviteInfo.builder()
                                                                                            .build()))
                                                                                    .build())
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .build()))
                                                                .customData(Map.ofEntries(
                                                                    Map.entry("someCustomField", CustomDataValue.builder()
                                                                        .build())))
                                                                .contactPerson(Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .metadata(PersonMetadata.builder()
                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                        .title("Actor")
                                                                        .department("Movies")
                                                                        .email("george@example.com")
                                                                        .location("Hollywood, CA")
                                                                        .phone("6505551234")
                                                                        .photoUrl("https://example.com/george.jpg")
                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                        .datasourceProfile(List.of(
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build(),
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build()))
                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                            .suggestions(List.of(
                                                                                QuerySuggestion.builder()
                                                                                    .query("app:github type:pull author:mortimer")
                                                                                    .label("Mortimer's PRs")
                                                                                    .datasource("github")
                                                                                    .build()))
                                                                            .build())
                                                                        .inviteInfo(InviteInfo.builder()
                                                                            .invites(List.of(
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build()))
                                                                            .build())
                                                                        .badges(List.of(
                                                                            Badge.builder()
                                                                                .key("deployment_name_new_hire")
                                                                                .displayName("New hire")
                                                                                .iconConfig(IconConfig.builder()
                                                                                    .color("#343CED")
                                                                                    .key("person_icon")
                                                                                    .iconType(IconType.GLYPH)
                                                                                    .name("user")
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build())
                                                                .build())
                                                            .build())
                                                        .title("title")
                                                        .nativeAppUrl("slack://foo/bar")
                                                        .snippets(List.of(
                                                            SearchResultSnippet.builder()
                                                                .snippet("snippet")
                                                                .mimeType("mimeType")
                                                                .build()))
                                                        .relatedResults(List.of(
                                                            RelatedDocuments.builder()
                                                                .querySuggestion(QuerySuggestion.builder()
                                                                    .query("app:github type:pull author:mortimer")
                                                                    .searchProviderInfo(SearchProviderInfo.builder()
                                                                        .name("Google")
                                                                        .searchLinkUrlTemplate("https://www.google.com/search?q={query}&hl=en")
                                                                        .build())
                                                                    .label("Mortimer's PRs")
                                                                    .datasource("github")
                                                                    .requestOptions(SearchRequestOptions.builder()
                                                                        .facetBucketSize(127205L)
                                                                        .datasourceFilter("JIRA")
                                                                        .datasourcesFilter(List.of(
                                                                            "JIRA"))
                                                                        .queryOverridesFacetFilters(true)
                                                                        .facetFilters(List.of(
                                                                            FacetFilter.builder()
                                                                                .fieldName("type")
                                                                                .values(List.of(
                                                                                    FacetFilterValue.builder()
                                                                                        .value("Spreadsheet")
                                                                                        .relationType(RelationType.EQUALS)
                                                                                        .build(),
                                                                                    FacetFilterValue.builder()
                                                                                        .value("Presentation")
                                                                                        .relationType(RelationType.EQUALS)
                                                                                        .build()))
                                                                                .build()))
                                                                        .facetFilterSets(List.of(
                                                                            FacetFilterSet.builder()
                                                                                .filters(List.of(
                                                                                    FacetFilter.builder()
                                                                                        .fieldName("type")
                                                                                        .values(List.of(
                                                                                            FacetFilterValue.builder()
                                                                                                .value("Spreadsheet")
                                                                                                .relationType(RelationType.EQUALS)
                                                                                                .build(),
                                                                                            FacetFilterValue.builder()
                                                                                                .value("Presentation")
                                                                                                .relationType(RelationType.EQUALS)
                                                                                                .build()))
                                                                                        .build()))
                                                                                .build(),
                                                                            FacetFilterSet.builder()
                                                                                .filters(List.of(
                                                                                    FacetFilter.builder()
                                                                                        .fieldName("type")
                                                                                        .values(List.of(
                                                                                            FacetFilterValue.builder()
                                                                                                .value("Spreadsheet")
                                                                                                .relationType(RelationType.EQUALS)
                                                                                                .build(),
                                                                                            FacetFilterValue.builder()
                                                                                                .value("Presentation")
                                                                                                .relationType(RelationType.EQUALS)
                                                                                                .build()))
                                                                                        .build()))
                                                                                .build(),
                                                                            FacetFilterSet.builder()
                                                                                .filters(List.of(
                                                                                    FacetFilter.builder()
                                                                                        .fieldName("type")
                                                                                        .values(List.of(
                                                                                            FacetFilterValue.builder()
                                                                                                .value("Spreadsheet")
                                                                                                .relationType(RelationType.EQUALS)
                                                                                                .build(),
                                                                                            FacetFilterValue.builder()
                                                                                                .value("Presentation")
                                                                                                .relationType(RelationType.EQUALS)
                                                                                                .build()))
                                                                                        .build()))
                                                                                .build()))
                                                                        .authTokens(List.of(
                                                                            AuthToken.builder()
                                                                                .accessToken("123abc")
                                                                                .datasource("gmail")
                                                                                .scope("email profile https://www.googleapis.com/auth/gmail.readonly")
                                                                                .tokenType("Bearer")
                                                                                .authUser("1")
                                                                                .build()))
                                                                        .build())
                                                                    .inputDetails(SearchRequestInputDetails.builder()
                                                                        .hasCopyPaste(true)
                                                                        .build())
                                                                    .build())
                                                                .build(),
                                                            RelatedDocuments.builder()
                                                                .querySuggestion(QuerySuggestion.builder()
                                                                    .query("app:github type:pull author:mortimer")
                                                                    .searchProviderInfo(SearchProviderInfo.builder()
                                                                        .name("Google")
                                                                        .searchLinkUrlTemplate("https://www.google.com/search?q={query}&hl=en")
                                                                        .build())
                                                                    .label("Mortimer's PRs")
                                                                    .datasource("github")
                                                                    .requestOptions(SearchRequestOptions.builder()
                                                                        .facetBucketSize(127205L)
                                                                        .datasourceFilter("JIRA")
                                                                        .datasourcesFilter(List.of(
                                                                            "JIRA"))
                                                                        .queryOverridesFacetFilters(true)
                                                                        .facetFilters(List.of(
                                                                            FacetFilter.builder()
                                                                                .fieldName("type")
                                                                                .values(List.of(
                                                                                    FacetFilterValue.builder()
                                                                                        .value("Spreadsheet")
                                                                                        .relationType(RelationType.EQUALS)
                                                                                        .build(),
                                                                                    FacetFilterValue.builder()
                                                                                        .value("Presentation")
                                                                                        .relationType(RelationType.EQUALS)
                                                                                        .build()))
                                                                                .build()))
                                                                        .facetFilterSets(List.of(
                                                                            FacetFilterSet.builder()
                                                                                .filters(List.of(
                                                                                    FacetFilter.builder()
                                                                                        .fieldName("type")
                                                                                        .values(List.of(
                                                                                            FacetFilterValue.builder()
                                                                                                .value("Spreadsheet")
                                                                                                .relationType(RelationType.EQUALS)
                                                                                                .build(),
                                                                                            FacetFilterValue.builder()
                                                                                                .value("Presentation")
                                                                                                .relationType(RelationType.EQUALS)
                                                                                                .build()))
                                                                                        .build()))
                                                                                .build(),
                                                                            FacetFilterSet.builder()
                                                                                .filters(List.of(
                                                                                    FacetFilter.builder()
                                                                                        .fieldName("type")
                                                                                        .values(List.of(
                                                                                            FacetFilterValue.builder()
                                                                                                .value("Spreadsheet")
                                                                                                .relationType(RelationType.EQUALS)
                                                                                                .build(),
                                                                                            FacetFilterValue.builder()
                                                                                                .value("Presentation")
                                                                                                .relationType(RelationType.EQUALS)
                                                                                                .build()))
                                                                                        .build()))
                                                                                .build(),
                                                                            FacetFilterSet.builder()
                                                                                .filters(List.of(
                                                                                    FacetFilter.builder()
                                                                                        .fieldName("type")
                                                                                        .values(List.of(
                                                                                            FacetFilterValue.builder()
                                                                                                .value("Spreadsheet")
                                                                                                .relationType(RelationType.EQUALS)
                                                                                                .build(),
                                                                                            FacetFilterValue.builder()
                                                                                                .value("Presentation")
                                                                                                .relationType(RelationType.EQUALS)
                                                                                                .build()))
                                                                                        .build()))
                                                                                .build()))
                                                                        .authTokens(List.of(
                                                                            AuthToken.builder()
                                                                                .accessToken("123abc")
                                                                                .datasource("gmail")
                                                                                .scope("email profile https://www.googleapis.com/auth/gmail.readonly")
                                                                                .tokenType("Bearer")
                                                                                .authUser("1")
                                                                                .build()))
                                                                        .build())
                                                                    .inputDetails(SearchRequestInputDetails.builder()
                                                                        .hasCopyPaste(true)
                                                                        .build())
                                                                    .build())
                                                                .build()))
                                                        .allClusteredResults(List.of(
                                                            ClusterGroup.builder()
                                                                .visibleCountHint(156570L)
                                                                .build(),
                                                            ClusterGroup.builder()
                                                                .visibleCountHint(156570L)
                                                                .build()))
                                                        .mustIncludeSuggestions(QuerySuggestionList.builder()
                                                            .person(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .build())
                                                        .querySuggestion(QuerySuggestion.builder()
                                                            .query("app:github type:pull author:mortimer")
                                                            .searchProviderInfo(SearchProviderInfo.builder()
                                                                .name("Google")
                                                                .searchLinkUrlTemplate("https://www.google.com/search?q={query}&hl=en")
                                                                .build())
                                                            .label("Mortimer's PRs")
                                                            .datasource("github")
                                                            .requestOptions(SearchRequestOptions.builder()
                                                                .facetBucketSize(974103L)
                                                                .datasourceFilter("JIRA")
                                                                .datasourcesFilter(List.of(
                                                                    "JIRA"))
                                                                .queryOverridesFacetFilters(true)
                                                                .facetFilters(List.of(
                                                                    FacetFilter.builder()
                                                                        .fieldName("type")
                                                                        .values(List.of(
                                                                            FacetFilterValue.builder()
                                                                                .value("Spreadsheet")
                                                                                .relationType(RelationType.EQUALS)
                                                                                .build(),
                                                                            FacetFilterValue.builder()
                                                                                .value("Presentation")
                                                                                .relationType(RelationType.EQUALS)
                                                                                .build()))
                                                                        .build()))
                                                                .facetFilterSets(List.of(
                                                                    FacetFilterSet.builder()
                                                                        .filters(List.of(
                                                                            FacetFilter.builder()
                                                                                .fieldName("type")
                                                                                .values(List.of(
                                                                                    FacetFilterValue.builder()
                                                                                        .value("Spreadsheet")
                                                                                        .relationType(RelationType.EQUALS)
                                                                                        .build(),
                                                                                    FacetFilterValue.builder()
                                                                                        .value("Presentation")
                                                                                        .relationType(RelationType.EQUALS)
                                                                                        .build()))
                                                                                .build()))
                                                                        .build(),
                                                                    FacetFilterSet.builder()
                                                                        .filters(List.of(
                                                                            FacetFilter.builder()
                                                                                .fieldName("type")
                                                                                .values(List.of(
                                                                                    FacetFilterValue.builder()
                                                                                        .value("Spreadsheet")
                                                                                        .relationType(RelationType.EQUALS)
                                                                                        .build(),
                                                                                    FacetFilterValue.builder()
                                                                                        .value("Presentation")
                                                                                        .relationType(RelationType.EQUALS)
                                                                                        .build()))
                                                                                .build()))
                                                                        .build(),
                                                                    FacetFilterSet.builder()
                                                                        .filters(List.of(
                                                                            FacetFilter.builder()
                                                                                .fieldName("type")
                                                                                .values(List.of(
                                                                                    FacetFilterValue.builder()
                                                                                        .value("Spreadsheet")
                                                                                        .relationType(RelationType.EQUALS)
                                                                                        .build(),
                                                                                    FacetFilterValue.builder()
                                                                                        .value("Presentation")
                                                                                        .relationType(RelationType.EQUALS)
                                                                                        .build()))
                                                                                .build()))
                                                                        .build()))
                                                                .authTokens(List.of(
                                                                    AuthToken.builder()
                                                                        .accessToken("123abc")
                                                                        .datasource("gmail")
                                                                        .scope("email profile https://www.googleapis.com/auth/gmail.readonly")
                                                                        .tokenType("Bearer")
                                                                        .authUser("1")
                                                                        .build()))
                                                                .build())
                                                            .inputDetails(SearchRequestInputDetails.builder()
                                                                .hasCopyPaste(true)
                                                                .build())
                                                            .build())
                                                        .build())
                                                    .build())
                                                .meeting(Meeting.builder()
                                                    .attendees(CalendarAttendees.builder()
                                                        .people(List.of(
                                                            CalendarAttendee.builder()
                                                                .person(Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .metadata(PersonMetadata.builder()
                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                        .title("Actor")
                                                                        .department("Movies")
                                                                        .email("george@example.com")
                                                                        .location("Hollywood, CA")
                                                                        .phone("6505551234")
                                                                        .photoUrl("https://example.com/george.jpg")
                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                        .datasourceProfile(List.of(
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build()))
                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                            .suggestions(List.of(
                                                                                QuerySuggestion.builder()
                                                                                    .query("app:github type:pull author:mortimer")
                                                                                    .label("Mortimer's PRs")
                                                                                    .datasource("github")
                                                                                    .build()))
                                                                            .build())
                                                                        .inviteInfo(InviteInfo.builder()
                                                                            .invites(List.of(
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build()))
                                                                            .build())
                                                                        .badges(List.of(
                                                                            Badge.builder()
                                                                                .key("deployment_name_new_hire")
                                                                                .displayName("New hire")
                                                                                .iconConfig(IconConfig.builder()
                                                                                    .color("#343CED")
                                                                                    .key("person_icon")
                                                                                    .iconType(IconType.GLYPH)
                                                                                    .name("user")
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build())
                                                                .build(),
                                                            CalendarAttendee.builder()
                                                                .person(Person.builder()
                                                                    .name("George Clooney")
                                                                    .obfuscatedId("abc123")
                                                                    .metadata(PersonMetadata.builder()
                                                                        .type(PersonMetadataType.FULL_TIME)
                                                                        .title("Actor")
                                                                        .department("Movies")
                                                                        .email("george@example.com")
                                                                        .location("Hollywood, CA")
                                                                        .phone("6505551234")
                                                                        .photoUrl("https://example.com/george.jpg")
                                                                        .startDate(LocalDate.parse("2000-01-23"))
                                                                        .datasourceProfile(List.of(
                                                                            DatasourceProfile.builder()
                                                                                .datasource("github")
                                                                                .handle("<value>")
                                                                                .build()))
                                                                        .querySuggestions(QuerySuggestionList.builder()
                                                                            .suggestions(List.of(
                                                                                QuerySuggestion.builder()
                                                                                    .query("app:github type:pull author:mortimer")
                                                                                    .label("Mortimer's PRs")
                                                                                    .datasource("github")
                                                                                    .build()))
                                                                            .build())
                                                                        .inviteInfo(InviteInfo.builder()
                                                                            .invites(List.of(
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build(),
                                                                                ChannelInviteInfo.builder()
                                                                                    .build()))
                                                                            .build())
                                                                        .badges(List.of(
                                                                            Badge.builder()
                                                                                .key("deployment_name_new_hire")
                                                                                .displayName("New hire")
                                                                                .iconConfig(IconConfig.builder()
                                                                                    .color("#343CED")
                                                                                    .key("person_icon")
                                                                                    .iconType(IconType.GLYPH)
                                                                                    .name("user")
                                                                                    .build())
                                                                                .build()))
                                                                        .build())
                                                                    .build())
                                                                .build()))
                                                        .build())
                                                    .build())
                                                .collection(Collection.builder()
                                                    .name("<value>")
                                                    .description("rubric sadly clueless whoever torn rim coaxingly")
                                                    .id(690639L)
                                                    .audienceFilters(List.of(
                                                        FacetFilter.builder()
                                                            .fieldName("type")
                                                            .values(List.of(
                                                                FacetFilterValue.builder()
                                                                    .value("Spreadsheet")
                                                                    .relationType(RelationType.EQUALS)
                                                                    .build(),
                                                                FacetFilterValue.builder()
                                                                    .value("Presentation")
                                                                    .relationType(RelationType.EQUALS)
                                                                    .build()))
                                                            .build()))
                                                    .creator(Person.builder()
                                                        .name("George Clooney")
                                                        .obfuscatedId("abc123")
                                                        .metadata(PersonMetadata.builder()
                                                            .type(PersonMetadataType.FULL_TIME)
                                                            .title("Actor")
                                                            .department("Movies")
                                                            .email("george@example.com")
                                                            .location("Hollywood, CA")
                                                            .phone("6505551234")
                                                            .photoUrl("https://example.com/george.jpg")
                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                            .datasourceProfile(List.of(
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build(),
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build()))
                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                .suggestions(List.of(
                                                                    QuerySuggestion.builder()
                                                                        .query("app:github type:pull author:mortimer")
                                                                        .label("Mortimer's PRs")
                                                                        .datasource("github")
                                                                        .build()))
                                                                .build())
                                                            .inviteInfo(InviteInfo.builder()
                                                                .invites(List.of(
                                                                    ChannelInviteInfo.builder()
                                                                        .build(),
                                                                    ChannelInviteInfo.builder()
                                                                        .build(),
                                                                    ChannelInviteInfo.builder()
                                                                        .build()))
                                                                .build())
                                                            .badges(List.of(
                                                                Badge.builder()
                                                                    .key("deployment_name_new_hire")
                                                                    .displayName("New hire")
                                                                    .iconConfig(IconConfig.builder()
                                                                        .color("#343CED")
                                                                        .key("person_icon")
                                                                        .iconType(IconType.GLYPH)
                                                                        .name("user")
                                                                        .build())
                                                                    .build()))
                                                            .build())
                                                        .build())
                                                    .updatedBy(Person.builder()
                                                        .name("George Clooney")
                                                        .obfuscatedId("abc123")
                                                        .metadata(PersonMetadata.builder()
                                                            .type(PersonMetadataType.FULL_TIME)
                                                            .title("Actor")
                                                            .department("Movies")
                                                            .email("george@example.com")
                                                            .location("Hollywood, CA")
                                                            .phone("6505551234")
                                                            .photoUrl("https://example.com/george.jpg")
                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                            .datasourceProfile(List.of(
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build()))
                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                .suggestions(List.of(
                                                                    QuerySuggestion.builder()
                                                                        .query("app:github type:pull author:mortimer")
                                                                        .label("Mortimer's PRs")
                                                                        .datasource("github")
                                                                        .build()))
                                                                .build())
                                                            .inviteInfo(InviteInfo.builder()
                                                                .invites(List.of(
                                                                    ChannelInviteInfo.builder()
                                                                        .build(),
                                                                    ChannelInviteInfo.builder()
                                                                        .build(),
                                                                    ChannelInviteInfo.builder()
                                                                        .build()))
                                                                .build())
                                                            .badges(List.of(
                                                                Badge.builder()
                                                                    .key("deployment_name_new_hire")
                                                                    .displayName("New hire")
                                                                    .iconConfig(IconConfig.builder()
                                                                        .color("#343CED")
                                                                        .key("person_icon")
                                                                        .iconType(IconType.GLYPH)
                                                                        .name("user")
                                                                        .build())
                                                                    .build()))
                                                            .build())
                                                        .build())
                                                    .build())
                                                .code(Code.builder()
                                                    .repoName("scio")
                                                    .fileName("README.md")
                                                    .lines(List.of(
                                                        CodeLine.builder()
                                                            .build()))
                                                    .build())
                                                .shortcut(Shortcut.builder()
                                                    .inputAlias("<value>")
                                                    .createdBy(Person.builder()
                                                        .name("George Clooney")
                                                        .obfuscatedId("abc123")
                                                        .metadata(PersonMetadata.builder()
                                                            .type(PersonMetadataType.FULL_TIME)
                                                            .title("Actor")
                                                            .department("Movies")
                                                            .email("george@example.com")
                                                            .location("Hollywood, CA")
                                                            .phone("6505551234")
                                                            .photoUrl("https://example.com/george.jpg")
                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                            .datasourceProfile(List.of(
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build(),
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build(),
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build()))
                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                .suggestions(List.of(
                                                                    QuerySuggestion.builder()
                                                                        .query("app:github type:pull author:mortimer")
                                                                        .label("Mortimer's PRs")
                                                                        .datasource("github")
                                                                        .build()))
                                                                .build())
                                                            .inviteInfo(InviteInfo.builder()
                                                                .invites(List.of(
                                                                    ChannelInviteInfo.builder()
                                                                        .build(),
                                                                    ChannelInviteInfo.builder()
                                                                        .build(),
                                                                    ChannelInviteInfo.builder()
                                                                        .build()))
                                                                .build())
                                                            .badges(List.of(
                                                                Badge.builder()
                                                                    .key("deployment_name_new_hire")
                                                                    .displayName("New hire")
                                                                    .iconConfig(IconConfig.builder()
                                                                        .color("#343CED")
                                                                        .key("person_icon")
                                                                        .iconType(IconType.GLYPH)
                                                                        .name("user")
                                                                        .build())
                                                                    .build()))
                                                            .build())
                                                        .build())
                                                    .updatedBy(Person.builder()
                                                        .name("George Clooney")
                                                        .obfuscatedId("abc123")
                                                        .metadata(PersonMetadata.builder()
                                                            .type(PersonMetadataType.FULL_TIME)
                                                            .title("Actor")
                                                            .department("Movies")
                                                            .email("george@example.com")
                                                            .location("Hollywood, CA")
                                                            .phone("6505551234")
                                                            .photoUrl("https://example.com/george.jpg")
                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                            .datasourceProfile(List.of(
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build(),
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build()))
                                                            .querySuggestions(QuerySuggestionList.builder()
                                                                .suggestions(List.of(
                                                                    QuerySuggestion.builder()
                                                                        .query("app:github type:pull author:mortimer")
                                                                        .label("Mortimer's PRs")
                                                                        .datasource("github")
                                                                        .build()))
                                                                .build())
                                                            .inviteInfo(InviteInfo.builder()
                                                                .invites(List.of(
                                                                    ChannelInviteInfo.builder()
                                                                        .build(),
                                                                    ChannelInviteInfo.builder()
                                                                        .build(),
                                                                    ChannelInviteInfo.builder()
                                                                        .build()))
                                                                .build())
                                                            .badges(List.of(
                                                                Badge.builder()
                                                                    .key("deployment_name_new_hire")
                                                                    .displayName("New hire")
                                                                    .iconConfig(IconConfig.builder()
                                                                        .color("#343CED")
                                                                        .key("person_icon")
                                                                        .iconType(IconType.GLYPH)
                                                                        .name("user")
                                                                        .build())
                                                                    .build()))
                                                            .build())
                                                        .build())
                                                    .destinationDocument(Document.builder()
                                                        .metadata(DocumentMetadata.builder()
                                                            .datasource("datasource")
                                                            .objectType("Feature Request")
                                                            .container("container")
                                                            .parentId("JIRA_EN-1337")
                                                            .mimeType("mimeType")
                                                            .documentId("documentId")
                                                            .createTime(OffsetDateTime.parse("2000-01-23T04:56:07.000Z"))
                                                            .updateTime(OffsetDateTime.parse("2000-01-23T04:56:07.000Z"))
                                                            .author(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .owner(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .components(List.of(
                                                                "Backend",
                                                                "Networking"))
                                                            .status("[\"Done\"]")
                                                            .assignedTo(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .updatedBy(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .verification(Verification.builder()
                                                                .state(State.VERIFIED)
                                                                .metadata(VerificationMetadata.builder()
                                                                    .lastVerifier(Person.builder()
                                                                        .name("George Clooney")
                                                                        .obfuscatedId("abc123")
                                                                        .metadata(PersonMetadata.builder()
                                                                            .type(PersonMetadataType.FULL_TIME)
                                                                            .title("Actor")
                                                                            .department("Movies")
                                                                            .email("george@example.com")
                                                                            .location("Hollywood, CA")
                                                                            .phone("6505551234")
                                                                            .photoUrl("https://example.com/george.jpg")
                                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                                            .datasourceProfile(List.of(
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build(),
                                                                                DatasourceProfile.builder()
                                                                                    .datasource("github")
                                                                                    .handle("<value>")
                                                                                    .build()))
                                                                            .badges(List.of(
                                                                                Badge.builder()
                                                                                    .key("deployment_name_new_hire")
                                                                                    .displayName("New hire")
                                                                                    .iconConfig(IconConfig.builder()
                                                                                        .color("#343CED")
                                                                                        .key("person_icon")
                                                                                        .iconType(IconType.GLYPH)
                                                                                        .name("user")
                                                                                        .build())
                                                                                    .build()))
                                                                            .build())
                                                                        .build())
                                                                    .lastReminder(Reminder.builder()
                                                                        .assignee(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .remindAt(716571L)
                                                                        .requestor(Person.builder()
                                                                            .name("George Clooney")
                                                                            .obfuscatedId("abc123")
                                                                            .metadata(PersonMetadata.builder()
                                                                                .type(PersonMetadataType.FULL_TIME)
                                                                                .title("Actor")
                                                                                .department("Movies")
                                                                                .email("george@example.com")
                                                                                .location("Hollywood, CA")
                                                                                .phone("6505551234")
                                                                                .photoUrl("https://example.com/george.jpg")
                                                                                .startDate(LocalDate.parse("2000-01-23"))
                                                                                .datasourceProfile(List.of(
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build(),
                                                                                    DatasourceProfile.builder()
                                                                                        .datasource("github")
                                                                                        .handle("<value>")
                                                                                        .build()))
                                                                                .badges(List.of(
                                                                                    Badge.builder()
                                                                                        .key("deployment_name_new_hire")
                                                                                        .displayName("New hire")
                                                                                        .iconConfig(IconConfig.builder()
                                                                                            .color("#343CED")
                                                                                            .key("person_icon")
                                                                                            .iconType(IconType.GLYPH)
                                                                                            .name("user")
                                                                                            .build())
                                                                                        .build()))
                                                                                .build())
                                                                            .build())
                                                                        .build())
                                                                    .build())
                                                                .build())
                                                            .customData(Map.ofEntries(
                                                                Map.entry("someCustomField", CustomDataValue.builder()
                                                                    .build())))
                                                            .contactPerson(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .build())
                                                        .build())
                                                    .roles(List.of(
                                                        UserRoleSpecification.builder()
                                                            .role(UserRole.ANSWER_MODERATOR)
                                                            .person(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                        .suggestions(List.of(
                                                                            QuerySuggestion.builder()
                                                                                .query("app:github type:pull author:mortimer")
                                                                                .label("Mortimer's PRs")
                                                                                .datasource("github")
                                                                                .build()))
                                                                        .build())
                                                                    .inviteInfo(InviteInfo.builder()
                                                                        .invites(List.of(
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build()))
                                                                        .build())
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .build(),
                                                        UserRoleSpecification.builder()
                                                            .role(UserRole.ANSWER_MODERATOR)
                                                            .person(Person.builder()
                                                                .name("George Clooney")
                                                                .obfuscatedId("abc123")
                                                                .metadata(PersonMetadata.builder()
                                                                    .type(PersonMetadataType.FULL_TIME)
                                                                    .title("Actor")
                                                                    .department("Movies")
                                                                    .email("george@example.com")
                                                                    .location("Hollywood, CA")
                                                                    .phone("6505551234")
                                                                    .photoUrl("https://example.com/george.jpg")
                                                                    .startDate(LocalDate.parse("2000-01-23"))
                                                                    .datasourceProfile(List.of(
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build(),
                                                                        DatasourceProfile.builder()
                                                                            .datasource("github")
                                                                            .handle("<value>")
                                                                            .build()))
                                                                    .querySuggestions(QuerySuggestionList.builder()
                                                                        .suggestions(List.of(
                                                                            QuerySuggestion.builder()
                                                                                .query("app:github type:pull author:mortimer")
                                                                                .label("Mortimer's PRs")
                                                                                .datasource("github")
                                                                                .build()))
                                                                        .build())
                                                                    .inviteInfo(InviteInfo.builder()
                                                                        .invites(List.of(
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build(),
                                                                            ChannelInviteInfo.builder()
                                                                                .build()))
                                                                        .build())
                                                                    .badges(List.of(
                                                                        Badge.builder()
                                                                            .key("deployment_name_new_hire")
                                                                            .displayName("New hire")
                                                                            .iconConfig(IconConfig.builder()
                                                                                .color("#343CED")
                                                                                .key("person_icon")
                                                                                .iconType(IconType.GLYPH)
                                                                                .name("user")
                                                                                .build())
                                                                            .build()))
                                                                    .build())
                                                                .build())
                                                            .build()))
                                                    .build())
                                                .querySuggestions(QuerySuggestionList.builder()
                                                    .suggestions(List.of(
                                                        QuerySuggestion.builder()
                                                            .query("app:github type:pull author:mortimer")
                                                            .label("Mortimer's PRs")
                                                            .datasource("github")
                                                            .build()))
                                                    .person(Person.builder()
                                                        .name("George Clooney")
                                                        .obfuscatedId("abc123")
                                                        .metadata(PersonMetadata.builder()
                                                            .type(PersonMetadataType.FULL_TIME)
                                                            .title("Actor")
                                                            .department("Movies")
                                                            .email("george@example.com")
                                                            .location("Hollywood, CA")
                                                            .phone("6505551234")
                                                            .photoUrl("https://example.com/george.jpg")
                                                            .startDate(LocalDate.parse("2000-01-23"))
                                                            .datasourceProfile(List.of(
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build(),
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build(),
                                                                DatasourceProfile.builder()
                                                                    .datasource("github")
                                                                    .handle("<value>")
                                                                    .build()))
                                                            .badges(List.of(
                                                                Badge.builder()
                                                                    .key("deployment_name_new_hire")
                                                                    .displayName("New hire")
                                                                    .iconConfig(IconConfig.builder()
                                                                        .color("#343CED")
                                                                        .key("person_icon")
                                                                        .iconType(IconType.GLYPH)
                                                                        .name("user")
                                                                        .build())
                                                                    .build()))
                                                            .build())
                                                        .build())
                                                    .build())
                                                .build())
                                            .build()))
                                    .build())
                                .audienceFilters(List.of(
                                    FacetFilter.builder()
                                        .fieldName("type")
                                        .values(List.of(
                                            FacetFilterValue.builder()
                                                .value("Spreadsheet")
                                                .relationType(RelationType.EQUALS)
                                                .build(),
                                            FacetFilterValue.builder()
                                                .value("Presentation")
                                                .relationType(RelationType.EQUALS)
                                                .build()))
                                        .build()))
                                .build())
                            .call();

                    if (res.announcement().isPresent()) {
                        // handle response
                    }
                }
            }
  /rest/api/v1/deleteannouncement:
    post:
      tags:
        - Announcements
      summary: Delete Announcement
      description: Delete an existing user-generated announcement.
      operationId: deleteannouncement
      x-visibility: Public
      x-codegen-request-body-name: payload
      parameters:
        - $ref: "#/components/parameters/locale"
      requestBody:
        content:
          application/json:
            schema:
              $ref: "#/components/schemas/DeleteAnnouncementRequest"
        description: Delete announcement request
        required: true
        x-exportParamName: Request
      responses:
        "200":
          description: OK
        "400":
          description: Invalid request
        "401":
          description: Not Authorized
        "429":
          description: Too Many Requests
      x-speakeasy-name-override: delete
      x-speakeasy-group: client.announcements
      x-codeSamples:
        - lang: python
          label: Python (API Client)
          source: |-
            from glean.api_client import Glean
            import os


            with Glean(
                api_token=os.getenv("GLEAN_API_TOKEN", ""),
                instance=os.getenv("GLEAN_INSTANCE", ""),
            ) as glean:

                glean.client.announcements.delete(id=458809)

                # Use the SDK ...
        - lang: typescript
          label: Typescript (API Client)
          source: |-
            import { Glean } from "@gleanwork/api-client";

            const glean = new Glean({
              apiToken: process.env["GLEAN_API_TOKEN"] ?? "",
              instance: process.env["GLEAN_INSTANCE"] ?? "",
            });

            async function run() {
              await glean.client.announcements.delete({
                id: 458809,
              });


            }

            run();
        - lang: go
          label: Go (API Client)
          source: "package main\n\nimport(\n\t\"context\"\n\t\"os\"\n\tapiclientgo \"github.com/gleanwork/api-client-go\"\n\t\"github.com/gleanwork/api-client-go/models/components\"\n\t\"log\"\n)\n\nfunc main() {\n    ctx := context.Background()\n\n    s := apiclientgo.New(\n        apiclientgo.WithSecurity(os.Getenv(\"GLEAN_API_TOKEN\")),\n        apiclientgo.WithInstance(os.Getenv(\"GLEAN_INSTANCE\")),\n    )\n\n    res, err := s.Client.Announcements.Delete(ctx, components.DeleteAnnouncementRequest{\n        ID: 458809,\n    }, nil)\n    if err != nil {\n        log.Fatal(err)\n    }\n    if res != nil {\n        // handle response\n    }\n}"
        - lang: java
          label: Java (API Client)
          source: |-
            package hello.world;

            import com.glean.api_client.glean_api_client.Glean;
            import com.glean.api_client.glean_api_client.models.components.DeleteAnnouncementRequest;
            import com.glean.api_client.glean_api_client.models.operations.DeleteannouncementResponse;
            import java.lang.Exception;

            public class Application {

                public static void main(String[] args) throws Exception {

                    Glean sdk = Glean.builder()
                            .apiToken(System.getenv().getOrDefault("GLEAN_API_TOKEN", ""))
                        .build();

                    DeleteannouncementResponse res = sdk.client().announcements().delete()
                            .deleteAnnouncementRequest(DeleteAnnouncementRequest.builder()
                                .id(458809L)
                                .build())
                            .call();

                    // handle response
                }
            }
  /rest/api/v1/updateannouncement:
    post:
      tags:
        - Announcements
      summary: Update Announcement
      description: Update a textual announcement visible to some set of users based on department and location.
      operationId: updateannouncement
      x-visibility: Public
      x-codegen-request-body-name: payload
      parameters:
        - $ref: "#/components/parameters/locale"
      requestBody:
        content:
          application/json:
            schema:
              $ref: "#/components/schemas/UpdateAnnouncementRequest"
        description: Announcement content. Id need to be specified for the announcement.
        required: true
        x-exportParamName: Request
      responses:
        "200":
          description: OK
          content:
            application/json:
              schema:
                $ref: "#/components/schemas/Announcement"
        "400":
          description: Invalid request
        "401":
          description: Not Authorized
        "429":
          description: Too Many Requests
      x-speakeasy-name-override: update
      x-speakeasy-group: client.announcements
      x-codeSamples:
        - lang: python
          label: Python (API Client)
          source: |-
            from glean.api_client import Glean, models
            from glean.api_client.utils import parse_datetime
            import os


            with Glean(
                api_token=os.getenv("GLEAN_API_TOKEN", ""),
                instance=os.getenv("GLEAN_INSTANCE", ""),
            ) as glean:

                res = glean.client.announcements.update(start_time=parse_datetime("2023-10-24T01:53:24.440Z"), end_time=parse_datetime("2024-10-30T07:24:12.087Z"), title="<value>", id=210913, body={
                    "text": "From https://en.wikipedia.org/wiki/Diffuse_sky_radiation, the sky is blue because blue light is more strongly scattered than longer-wavelength light.",
                    "structured_list": [
                        models.StructuredTextItem(
                            link="https://en.wikipedia.org/wiki/Diffuse_sky_radiation",
                            document=models.Document(
                                container_document=models.Document(
                                    metadata=models.DocumentMetadata(
                                        datasource="datasource",
                                        object_type="Feature Request",
                                        container="container",
                                        parent_id="JIRA_EN-1337",
                                        mime_type="mimeType",
                                        document_id="documentId",
                                        create_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                        update_time=parse_datetime("2000-01-23T04:56:07.000Z"),
                                        author=models.Person(
                                            name="name",
                                            obfuscated_id="<id>",
                                        ),
                                        components=[
                                            "Backend",
                                            "Networking",
                                        ],
                                        status="[\"Done\"]",
                                        custom_data={
                                            "someCustomField": models.CustomDataValue(),
                         